Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.1 #145

Merged
merged 13 commits into from
Mar 15, 2022
Prev Previous commit
Next Next commit
Update test cases for new index
  • Loading branch information
charvolant committed Mar 15, 2022
commit 0cf207463349736eda2cffc4a91224ced87c1340
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void testAutocomplete2() throws Exception {
assertEquals("Mary River Cod", second.get("commonname"));
assertEquals("Maccullochella mariensis", second.get("name"));
Map third = results.get(2);
assertEquals("Mary River turtle", third.get("commonname"));
assertEquals("Mary River Turtle", third.get("commonname"));
assertEquals("Elusor macrurus", third.get("name"));
}

Expand All @@ -66,7 +66,7 @@ public void testAutocomplete3() throws Exception {
assertNotNull(results);
assertTrue(results.size() > 0);
Map first = results.get(0);
assertEquals("Mary River turtle", first.get("commonname"));
assertEquals("Mary River Turtle", first.get("commonname"));
assertEquals("Elusor macrurus", first.get("name"));
}

Expand Down