From d9abbcf288d0f973facd449b30eee2cc70dec01f Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Thu, 7 Mar 2013 14:23:22 +0400 Subject: [PATCH] Minor. Reused tmpdir. --- .../org/jetbrains/jet/jvm/compiler/AbstractLoadJavaTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/tests/org/jetbrains/jet/jvm/compiler/AbstractLoadJavaTest.java b/compiler/tests/org/jetbrains/jet/jvm/compiler/AbstractLoadJavaTest.java index b17c651578d..686c35db871 100644 --- a/compiler/tests/org/jetbrains/jet/jvm/compiler/AbstractLoadJavaTest.java +++ b/compiler/tests/org/jetbrains/jet/jvm/compiler/AbstractLoadJavaTest.java @@ -83,10 +83,9 @@ public abstract class AbstractLoadJavaTest extends TestCaseWithTmpdir { return new File(s); } }); - File tmpDir = JetTestUtils.tmpDir(expectedFile.getName()); Pair javaNamespaceAndContext - = compileJavaAndLoadTestNamespaceAndBindingContextFromBinary(files, tmpDir, getTestRootDisposable(), + = compileJavaAndLoadTestNamespaceAndBindingContextFromBinary(files, tmpdir, getTestRootDisposable(), ConfigurationKind.JDK_ONLY); checkJavaNamespace(expectedFile, javaNamespaceAndContext.first, javaNamespaceAndContext.second);