From 1a94e2202b90c61880c05b794f44804b80adb46f Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Mon, 29 Aug 2016 18:16:47 +0300 Subject: [PATCH] Minor: Fix compilation error --- .../test/wrappers/AbstractJavaAnnotationProcessingTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugins-tests/tests/org/jetbrains/kotlin/annotation/processing/test/wrappers/AbstractJavaAnnotationProcessingTest.java b/plugins/plugins-tests/tests/org/jetbrains/kotlin/annotation/processing/test/wrappers/AbstractJavaAnnotationProcessingTest.java index f35b45591d0..ed58a9049a8 100755 --- a/plugins/plugins-tests/tests/org/jetbrains/kotlin/annotation/processing/test/wrappers/AbstractJavaAnnotationProcessingTest.java +++ b/plugins/plugins-tests/tests/org/jetbrains/kotlin/annotation/processing/test/wrappers/AbstractJavaAnnotationProcessingTest.java @@ -60,7 +60,7 @@ public abstract class AbstractJavaAnnotationProcessingTest extends KotlinMultiFi TestCase.assertTrue("No FqName specified. First line of the form '// f.q.Name' expected", matcher.find()); String fqName = matcher.group(1); - getEnvironment().updateClasspath(Collections.singletonList(testDir)); + getEnvironment().tryUpdateClasspath(Collections.singletonList(testDir)); super.doTest(new File(testDir.getParentFile(), "common.kt").getCanonicalPath());