Skip to content

Commit

Permalink
Fix test with invalid number of elements in completion
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwinnk committed Mar 19, 2012
1 parent e201fb5 commit b31c22e
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
63 changes: 63 additions & 0 deletions .idea/codeStyleSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ fun firstFun() {
// RUNTIME: 1
// TIME: 1
// EXIST: toLinkedList
// NUMBER: 1
// NUMBER: 2
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected void doTest() {
assertNotContainItems(unexpected);

if (itemsNumber != null) {
assertEquals(itemsNumber.intValue(), myItems.length);
assertEquals("Invalid number of completion items", itemsNumber.intValue(), myItems.length);
}
}
finally {
Expand Down

0 comments on commit b31c22e

Please sign in to comment.