Skip to content

Commit

Permalink
Code: Minor adjustment to test
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Dec 12, 2021
1 parent 2158240 commit c94bbc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void testLookup() {
for (Lookup lookup : lookups) {
try {
lookup.join();
assertEquals(lookup.lookupLinks.name() + " returned " + lookup.code + " for " + lookup.link, lookup.code, HttpURLConnection.HTTP_OK);
assertEquals(lookup.lookupLinks.name() + " returned " + lookup.code + " for " + lookup.link, HttpURLConnection.HTTP_OK, lookup.code);
} catch (InterruptedException ex) {
fail(ex.getMessage());
}
Expand Down

0 comments on commit c94bbc7

Please sign in to comment.