Skip to content

Commit

Permalink
New maven attribute was breaking tests (#356)
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolas <[email protected]>
  • Loading branch information
NikolasKomonen authored Apr 23, 2019
1 parent 6bf1a3b commit fe527c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ public void xsiCompletionNotUsingXSIName() throws BadLocationException {
" <modelVersion></modelVersion>\r\n" +
"</project>";

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
Expand Down Expand Up @@ -485,7 +485,7 @@ public void xsiCompletionSchemaLocationExists() throws BadLocationException {
" <modelVersion></modelVersion>\r\n" +
"</project>";

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
Expand Down

0 comments on commit fe527c3

Please sign in to comment.