diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-01-07 21:55:38 +0100 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-01-07 21:55:38 +0100 |
| commit | 2e88cc740bce1211507f22f08b1d364ea5c7951d (patch) | |
| tree | d473e1f0360e0e012c42405cab86aa2663c84a91 /tests/src/cgeo/geocaching/connector/gc/GCParserTest.java | |
| parent | 1515e2fd5a136c71344ad06664c1a347846eb0ae (diff) | |
| download | cgeo-2e88cc740bce1211507f22f08b1d364ea5c7951d.zip cgeo-2e88cc740bce1211507f22f08b1d364ea5c7951d.tar.gz cgeo-2e88cc740bce1211507f22f08b1d364ea5c7951d.tar.bz2 | |
Refactoring: rename cgImage into Image
Diffstat (limited to 'tests/src/cgeo/geocaching/connector/gc/GCParserTest.java')
| -rw-r--r-- | tests/src/cgeo/geocaching/connector/gc/GCParserTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java index 80aa545..6a49c95 100644 --- a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java +++ b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java @@ -1,9 +1,9 @@ package cgeo.geocaching.connector.gc; +import cgeo.geocaching.Image; import cgeo.geocaching.SearchResult; import cgeo.geocaching.Settings; import cgeo.geocaching.cgCache; -import cgeo.geocaching.cgImage; import cgeo.geocaching.Waypoint; import cgeo.geocaching.enumerations.LoadFlags; import cgeo.geocaching.enumerations.StatusCode; @@ -65,7 +65,7 @@ public class GCParserTest extends AbstractResourceInstrumentationTestCase { assertNotNull(cache); assertTrue(CollectionUtils.isNotEmpty(cache.getSpoilers())); assertEquals(1, cache.getSpoilers().size()); - final cgImage spoiler = cache.getSpoilers().get(0); + final Image spoiler = cache.getSpoilers().get(0); assertEquals("http://img.geocaching.com/cache/large/3f9365c3-f55c-4e55-9992-ee0e5175712c.jpg", spoiler.getUrl()); assertEquals("SPOILER", spoiler.getTitle()); assertNull(spoiler.getDescription()); |
