Remove non short-circuit expression in Neo4jPropertiesTests
Closes gh-10468
This commit is contained in:
parent
cf30392564
commit
40b4a21f4d
|
|
@ -157,7 +157,7 @@ public class Neo4jPropertiesTests {
|
||||||
private static void assertCredentials(Configuration actual, String username,
|
private static void assertCredentials(Configuration actual, String username,
|
||||||
String password) {
|
String password) {
|
||||||
Credentials<?> credentials = actual.getCredentials();
|
Credentials<?> credentials = actual.getCredentials();
|
||||||
if (username == null & password == null) {
|
if (username == null && password == null) {
|
||||||
assertThat(credentials).isNull();
|
assertThat(credentials).isNull();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue