Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/test/java/com/google/maps/GeocodingApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ public void testReverseGeocodeRestrictedByType() throws Exception {
}

/**
* Testing partial match for "21 Henr St, Bristol, UK"
* Testing partial match.
*/
@Test
public void testPartialMatch() throws Exception {
GeocodingResult[] results = GeocodingApi.newRequest(context)
.address("21 Henr St, Bristol, UK").await();
.address("Pirrama Pyrmont").await();

assertNotNull(results);
assertTrue(results[0].partialMatch);
Expand Down