1
0
mirror of https://github.com/square/okhttp.git synced 2025-08-07 12:42:57 +03:00

Fix module name after kts switch (#6936)

This commit is contained in:
Yuri Schimke
2021-11-27 18:39:53 +00:00
committed by GitHub
parent 6d11a31ab5
commit 7e38a9a414

View File

@@ -124,7 +124,7 @@ fun findTests(selectors: List<DiscoverySelector>): List<TestDescriptor> {
val testEngine = buildTestEngine()
val filters = listOf<PostDiscoveryFilter>()
val discoveryOrchestrator = EngineDiscoveryOrchestrator(listOf(testEngine), filters)
val discovered = discoveryOrchestrator.discover(request, "run")
val discovered = discoveryOrchestrator.discover(request, EngineDiscoveryOrchestrator.Phase.EXECUTION)
return discovered.getEngineTestDescriptor(testEngine).descendants.toList()
}