better tmp dir name in TestCaseWithTmpdirIndependentFromIdea

This commit is contained in:
Stepan Koltsov
2012-04-09 18:22:22 +04:00
parent bcbcb48ef8
commit a41edaa224
@@ -30,7 +30,7 @@ public abstract class TestCaseWithTmpdirIndependentFromIdea {
@Before
public void before() throws Exception {
tmpdir = JetTestUtils.tmpDir(TestCaseWithTmpdirIndependentFromIdea.class.getName());
tmpdir = JetTestUtils.tmpDir(this.getClass().getName());
}
@After