Skip to content

Commit

Permalink
hot fix for broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
gardncl committed May 1, 2017
1 parent 8d0bf73 commit 2e1fe6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hashtables/src/test/java/ComputeKMostFrequentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void mostFrequent3() throws Exception {


private static void test(List<String> expected, List<String> list, int k) {
AssertUtils.assertSameContents(expected, ComputeKMostFrequent.mostFrequent(list, k));
AssertUtils.assertSameContentsString(expected, ComputeKMostFrequent.mostFrequent(list, k));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public void findAllSubstring1() throws Exception {
}

private void test(List<String> expected, String s, List<String> words) {
AssertUtils.assertSameContents(expected, ComputeStringDecompositions.findAllSubstring(s, words));
AssertUtils.assertSameContentsString(expected, ComputeStringDecompositions.findAllSubstring(s, words));
}
}

0 comments on commit 2e1fe6d

Please sign in to comment.