From 3fb0e5f2d74b851836473a780a593cc7893cca9a Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Mon, 7 Jan 2013 21:50:10 +0100 Subject: Refactoring: rename cgWaypoint into Waypoint --- tests/src/cgeo/geocaching/connector/gc/GCParserTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/src/cgeo/geocaching/connector/gc/GCParserTest.java') diff --git a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java index 0f1f4cf..80aa545 100644 --- a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java +++ b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java @@ -4,7 +4,7 @@ import cgeo.geocaching.SearchResult; import cgeo.geocaching.Settings; import cgeo.geocaching.cgCache; import cgeo.geocaching.cgImage; -import cgeo.geocaching.cgWaypoint; +import cgeo.geocaching.Waypoint; import cgeo.geocaching.enumerations.LoadFlags; import cgeo.geocaching.enumerations.StatusCode; import cgeo.geocaching.geopoint.Geopoint; @@ -171,7 +171,7 @@ public class GCParserTest extends AbstractResourceInstrumentationTestCase { private static void assertWaypointsFromNote(final cgCache cache, Geopoint[] expected, String note) { cache.setPersonalNote(note); - cache.setWaypoints(new ArrayList(), false); + cache.setWaypoints(new ArrayList(), false); cache.parseWaypointsFromNote(); assertEquals(expected.length, cache.getWaypoints().size()); for (int i = 0; i < expected.length; i++) { -- cgit v1.1