diff options
Diffstat (limited to 'tests/src/cgeo/test/Compare.java')
-rw-r--r-- | tests/src/cgeo/test/Compare.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/src/cgeo/test/Compare.java b/tests/src/cgeo/test/Compare.java index cabbf43..dbc4732 100644 --- a/tests/src/cgeo/test/Compare.java +++ b/tests/src/cgeo/test/Compare.java @@ -3,7 +3,6 @@ package cgeo.test; import static org.assertj.core.api.Assertions.assertThat; import cgeo.geocaching.Geocache; -import cgeo.geocaching.ICache; import cgeo.geocaching.enumerations.LogType; import cgeo.geocaching.utils.CryptUtils; @@ -13,7 +12,7 @@ import java.util.Date; public abstract class Compare { - public static void assertCompareCaches(ICache expected, Geocache actual, boolean all) { + public static void assertCompareCaches(Geocache expected, Geocache actual, boolean all) { final String geocode = expected.getGeocode(); final String cacheStr = "Cache " + geocode + ": "; assertThat(actual).isNotNull(); |