Browse Source

DATAJDBC-539 - Polishing.

Original pull request: #217.
pull/226/head
Jens Schauder 6 years ago
parent
commit
2336838e26
No known key found for this signature in database
GPG Key ID: 996B1389BA0721C3
  1. 1
      spring-data-relational/src/test/java/org/springframework/data/relational/repository/query/CriteriaFactoryUnitTests.java

1
spring-data-relational/src/test/java/org/springframework/data/relational/repository/query/CriteriaFactoryUnitTests.java

@ -74,6 +74,7 @@ public class CriteriaFactoryUnitTests { @@ -74,6 +74,7 @@ public class CriteriaFactoryUnitTests {
@SneakyThrows
private QueryMethod getQueryMethod(String methodName, Class<?>... parameterTypes) {
Method method = UserRepository.class.getMethod(methodName, parameterTypes);
return new QueryMethod(method, new DefaultRepositoryMetadata(UserRepository.class),
new SpelAwareProxyProjectionFactory());

Loading…
Cancel
Save