Increase highlights timeout in test harness

To see if it helps with test failing in CI build.
This commit is contained in:
Kris De Volder
2018-04-30 13:05:32 -07:00
parent ffb8d57801
commit 9629b2f65b

View File

@@ -140,7 +140,7 @@ public class LanguageServerHarness<S extends SimpleLanguageServerWrapper> {
this.defaultLanguageId = defaultLanguageId;
}
public static final Duration HIGHLIGHTS_TIMEOUT = Duration.ofMillis(3_000);
public static final Duration HIGHLIGHTS_TIMEOUT = Duration.ofMillis(6_000); //Why so long?
public LanguageServerHarness(Callable<S> factory) throws Exception {
this(factory, LanguageId.PLAINTEXT);