From dda5ca33899d9cd59fa554f6c5010464a22eea13 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Tue, 23 Apr 2019 10:52:34 -0400 Subject: [PATCH] New maven attribute was breaking tests Signed-off-by: Nikolas --- .../contentmodel/XMLSchemaCompletionExtensionsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.lsp4xml/src/test/java/org/eclipse/lsp4xml/extensions/contentmodel/XMLSchemaCompletionExtensionsTest.java b/org.eclipse.lsp4xml/src/test/java/org/eclipse/lsp4xml/extensions/contentmodel/XMLSchemaCompletionExtensionsTest.java index a427d07d4..54df624fe 100644 --- a/org.eclipse.lsp4xml/src/test/java/org/eclipse/lsp4xml/extensions/contentmodel/XMLSchemaCompletionExtensionsTest.java +++ b/org.eclipse.lsp4xml/src/test/java/org/eclipse/lsp4xml/extensions/contentmodel/XMLSchemaCompletionExtensionsTest.java @@ -448,7 +448,7 @@ public void xsiCompletionNotUsingXSIName() throws BadLocationException { " \r\n" + ""; - XMLAssert.testCompletionFor(xml, 2, c("XXY:nil", "XXY:nil=\"true\""), c("XXY:type", "XXY:type=\"\"")); + XMLAssert.testCompletionFor(xml, 3, c("XXY:nil", "XXY:nil=\"true\""), c("XXY:type", "XXY:type=\"\"")); } @Test @@ -485,7 +485,7 @@ public void xsiCompletionSchemaLocationExists() throws BadLocationException { " \r\n" + ""; - XMLAssert.testCompletionFor(xml, 2, c("xsi:nil", "xsi:nil=\"true\""), c("xsi:type", "xsi:type=\"\"")); + XMLAssert.testCompletionFor(xml, 3, c("xsi:nil", "xsi:nil=\"true\""), c("xsi:type", "xsi:type=\"\"")); } @Test