DATAES-775 Fix test runner setup.

Original PR: #416
This commit is contained in:
Peter-Josef Meisch 2020-03-31 22:15:30 +02:00 committed by GitHub
parent 1cd572125e
commit 403d9d08e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -321,6 +321,7 @@
<useFile>false</useFile>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
<systemPropertyVariables>
<es.set.netty.runtime.available.processors>false</es.set.netty.runtime.available.processors>

View File

@ -24,8 +24,8 @@ import org.springframework.test.context.ContextConfiguration;
/**
* @author Peter-Josef Meisch
*/
@ContextConfiguration(classes = { CriteriaQueryTestsTransport.Config.class })
public class CriteriaQueryTestsTransport extends CriteriaQueryTests {
@ContextConfiguration(classes = { CriteriaQueryTransportTests.Config.class })
public class CriteriaQueryTransportTests extends CriteriaQueryTests {
@Configuration
@Import({ ElasticsearchTemplateConfiguration.class })
@EnableElasticsearchRepositories(considerNestedRepositories = true)