Fix failing tests
This commit is contained in:
@@ -28,7 +28,7 @@ import io.typefox.lsapi.impl.TextEditImpl;
|
||||
*/
|
||||
public class VscodeCompletionEngineAdapter implements VscodeCompletionEngine {
|
||||
|
||||
final private int MAX_COMPLETIONS = 10;
|
||||
private final static int MAX_COMPLETIONS = 20;
|
||||
|
||||
final static Logger logger = LoggerFactory.getLogger(VscodeCompletionEngineAdapter.class);
|
||||
|
||||
@@ -120,5 +120,4 @@ public class VscodeCompletionEngineAdapter implements VscodeCompletionEngine {
|
||||
//The tricky part is that we have to probably remember infos about the unresolved elements somehow so we can resolve later.
|
||||
return Futures.of(unresolved);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ package org.springframework.ide.vscode.manifest.yaml;
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.springframework.ide.vscode.commons.languageserver.completion.VscodeCompletionEngineAdapter;
|
||||
import org.springframework.ide.vscode.languageserver.testharness.Editor;
|
||||
import org.springframework.ide.vscode.languageserver.testharness.LanguageServerHarness;
|
||||
import org.springframework.ide.vscode.manifest.yaml.ManifestYamlLanguageServer;
|
||||
|
||||
Reference in New Issue
Block a user