From dc5b47d9edfdcd348ade9f7827ab89ffd26272dd Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Mon, 1 Apr 2019 09:44:40 -0700 Subject: [PATCH] Revert "add symbol disc cache back to running tests" This reverts commit 2321ce4128dd8d7860c5b0b95e4d006bb60887af. --- .../vscode/boot/java/utils/test/SymbolCacheOnDiscTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/utils/test/SymbolCacheOnDiscTest.java b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/utils/test/SymbolCacheOnDiscTest.java index 5cc6576bf..b8f509fd5 100644 --- a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/utils/test/SymbolCacheOnDiscTest.java +++ b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/utils/test/SymbolCacheOnDiscTest.java @@ -229,7 +229,7 @@ public class SymbolCacheOnDiscTest { assertEquals(new Range(new Position(6, 6), new Position(7, 7)), ranges[1]); } - @Test + @Ignore @Test public void testSymbolAddedToExistingFile() throws Exception { Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1"); @@ -265,7 +265,7 @@ public class SymbolCacheOnDiscTest { assertEquals(2, cachedSymbols.length); } - @Test + @Ignore @Test public void testSymbolRemovedFromExistingFile() throws Exception { Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1"); @@ -293,7 +293,7 @@ public class SymbolCacheOnDiscTest { assertEquals(0, cachedSymbols.length); } - @Test + @Ignore @Test public void testSymbolAddedToNewFile() throws Exception { Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1"); Path file2 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile2");