Remove non short-circuit expression in Neo4jPropertiesTests

Closes gh-10468
This commit is contained in:
dreis2211 2017-10-01 17:56:31 +02:00 committed by Stephane Nicoll
parent cf30392564
commit 40b4a21f4d
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class Neo4jPropertiesTests {
private static void assertCredentials(Configuration actual, String username,
String password) {
Credentials<?> credentials = actual.getCredentials();
if (username == null & password == null) {
if (username == null && password == null) {
assertThat(credentials).isNull();
}
else {