From 728290f99e4f8fb63f2f166f9fbabd46cc65d27a Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Wed, 22 Jul 2015 16:25:52 +0300 Subject: [PATCH] Fix compilation error in tests (cherry picked from commit ea5b532) --- .../jetbrains/kotlin/idea/caches/resolve/IdeaModuleInfoTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/IdeaModuleInfoTest.kt b/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/IdeaModuleInfoTest.kt index 8115cf90daa..b99f2ddaeec 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/IdeaModuleInfoTest.kt +++ b/idea/tests/org/jetbrains/kotlin/idea/caches/resolve/IdeaModuleInfoTest.kt @@ -34,7 +34,7 @@ class IdeaModuleInfoTest : ModuleTestCase() { b.addDependency(a) b.production.assertDependenciesEqual(b.production, a.production) - assertDoesntContain(a.production.dependencies(), b.production) + UsefulTestCase.assertDoesntContain(a.production.dependencies(), b.production) } fun testCircularDependency() {