From 530440bbb9ce55f96395055abe86dcdcac3ca2a6 Mon Sep 17 00:00:00 2001 From: Michael Keppler Date: Fri, 25 Apr 2014 14:23:03 +0200 Subject: fix #3791: have logs separated from caches --- tests/src/cgeo/geocaching/files/GPXParserTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/src/cgeo/geocaching/files/GPXParserTest.java') 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); } -- cgit v1.1