aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/files/GPXParserTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/cgeo/geocaching/files/GPXParserTest.java')
-rw-r--r--tests/src/cgeo/geocaching/files/GPXParserTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/cgeo/geocaching/files/GPXParserTest.java b/tests/src/cgeo/geocaching/files/GPXParserTest.java
index 4cd0b6f..e1f3417 100644
--- a/tests/src/cgeo/geocaching/files/GPXParserTest.java
+++ b/tests/src/cgeo/geocaching/files/GPXParserTest.java
@@ -265,8 +265,8 @@ public class GPXParserTest extends AbstractResourceInstrumentationTestCase {
final Geocache minimalCache = DataStore.loadCache(geocode, EnumSet.of(LoadFlag.LOAD_DB_MINIMAL));
// now check that we load lazy members on demand
- assertThat(minimalCache.getAttributes().isEmpty()).isFalse();
- assertThat(minimalCache.getLogs().isEmpty()).isFalse();
+ assertThat(minimalCache.getAttributes()).isNotEmpty();
+ assertThat(minimalCache.getLogs()).isNotEmpty();
removeCacheCompletely(geocode);
}