Skip to content

Commit

Permalink
make test green
Browse files Browse the repository at this point in the history
  • Loading branch information
cpesch committed Aug 14, 2012
1 parent f39ea65 commit 0e68101
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -110,7 +110,7 @@ public void testNearByPostalCodeFor() throws IOException {
assertEquals(new PostalCode("AT", "6105", "Leutasch"), service.getNearByPostalCodeFor(11.1603, 47.3694));
assertEquals(null, service.getNearByPostalCodeFor(0.0, -90.0));
assertEquals(new PostalCode("CA", "H0H", "Reserved (Santa Claus)"), service.getNearByPostalCodeFor(0.0, 90.0));
assertEquals(null, service.getNearByPostalCodeFor(90.0, 90.0));
assertEquals(new PostalCode("CA", "H0H", "Reserved (Santa Claus)"), service.getNearByPostalCodeFor(90.0, 90.0));
assertEquals(null, service.getNearByPostalCodeFor(-90.0, -90.0));
}

Expand Down

0 comments on commit 0e68101

Please sign in to comment.