Skip to content

Commit 2e1fe6d

Browse files
committed
hot fix for broken build
1 parent 8d0bf73 commit 2e1fe6d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

hashtables/src/test/java/ComputeKMostFrequentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void mostFrequent3() throws Exception {
8787

8888

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

9393
}

hashtables/src/test/java/ComputeStringDecompositionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public void findAllSubstring1() throws Exception {
2828
}
2929

3030
private void test(List<String> expected, String s, List<String> words) {
31-
AssertUtils.assertSameContents(expected, ComputeStringDecompositions.findAllSubstring(s, words));
31+
AssertUtils.assertSameContentsString(expected, ComputeStringDecompositions.findAllSubstring(s, words));
3232
}
3333
}

0 commit comments

Comments
 (0)