Make timeout time moderate for live hints tests

This commit is contained in:
BoykoAlex
2018-05-10 17:29:16 -04:00
parent a88a33a647
commit bf7e0068e0

View File

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