From 9775daf2abd0433eccf9f29d4290a78fd77a6c07 Mon Sep 17 00:00:00 2001 From: Bas Leijdekkers Date: Tue, 24 Jan 2017 09:32:50 +0100 Subject: [PATCH] RegExp: the failure of other tests should not cause this test to fail --- .../test/org/intellij/lang/regexp/RegExpCompletionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java b/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java index b2e82d5cfa07..40822463cb81 100644 --- a/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java +++ b/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java @@ -87,7 +87,7 @@ public class RegExpCompletionTest extends CodeInsightFixtureTestCase { @Override protected String getBasePath() { String homePath = PathManager.getHomePath(); - File candidate = new File(homePath, "community/RegExpSupport"); + File candidate = new File(homePath, "community/RegExpSupport/testData/completion"); if (candidate.isDirectory()) { return "/community/RegExpSupport/testData/completion"; }