DATACMNS-867 - Adapt codebase after rebase on forward ports.

This commit is contained in:
Oliver Gierke
2016-12-20 13:47:18 +01:00
parent 9b3dd05baa
commit 2210f2e8e9
12 changed files with 60 additions and 102 deletions

View File

@@ -59,11 +59,11 @@ public class QuerydslBindingsUnitTests {
}
@Test // DATACMNS-669
public void returnsNullIfNoBindingRegisteredForPath() {
public void returnsEmptyOptionalIfNoBindingRegisteredForPath() {
PathInformation path = PropertyPathInformation.of("lastname", User.class);
assertThat(bindings.getBindingForPath(path)).isNull();
assertThat(bindings.getBindingForPath(path)).isEmpty();
}
@Test // DATACMNS-669
@@ -102,7 +102,7 @@ public class QuerydslBindingsUnitTests {
PathInformation path = PropertyPathInformation.of("inceptionYear", User.class);
assertThat(bindings.getBindingForPath(path)).isNull();
assertThat(bindings.getBindingForPath(path)).isEmpty();
}
@Test // DATACMNS-669