Skip to content
Snippets Groups Projects
Commit 6f30c503 authored by Stuart Marks's avatar Stuart Marks
Browse files

Merge pull request #1 from jbf/small-fixes

Fix exercise 23
parents fee1778a c9b24dd9
No related branches found
No related tags found
No related merge requests found
...@@ -591,7 +591,7 @@ public class Exercises { ...@@ -591,7 +591,7 @@ public class Exercises {
*/ */
@Test @Ignore @Test @Ignore
public void ex23_wordFrequencies() throws IOException { public void ex23_wordFrequencies() throws IOException {
Map<Integer, Long> result = null; // TODO Map<String, Long> result = null; // TODO
assertEquals(2L, (long)result.get("tender")); assertEquals(2L, (long)result.get("tender"));
assertEquals(6L, (long)result.get("the")); assertEquals(6L, (long)result.get("the"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment