diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-06-29 16:30:01 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-06-29 16:30:01 +0200 |
| commit | 63a35323a6741487fcd122312164bd1a38feaee4 (patch) | |
| tree | 2936513b8f6aaf6cbe0cdc130deb8ac345c4fa1f /tests/src/cgeo/geocaching/files | |
| parent | 9f39b088e3d15622e06c9c075ffd52bb128afc9d (diff) | |
| download | cgeo-63a35323a6741487fcd122312164bd1a38feaee4.zip cgeo-63a35323a6741487fcd122312164bd1a38feaee4.tar.gz cgeo-63a35323a6741487fcd122312164bd1a38feaee4.tar.bz2 | |
fix several name shadowing occurrences
Diffstat (limited to 'tests/src/cgeo/geocaching/files')
| -rw-r--r-- | tests/src/cgeo/geocaching/files/GPXParserTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/cgeo/geocaching/files/GPXParserTest.java b/tests/src/cgeo/geocaching/files/GPXParserTest.java index 1f97fa3..6171bab 100644 --- a/tests/src/cgeo/geocaching/files/GPXParserTest.java +++ b/tests/src/cgeo/geocaching/files/GPXParserTest.java @@ -285,7 +285,7 @@ public class GPXParserTest extends AbstractResourceInstrumentationTestCase { assertThat(caches).hasSize(1); DataStore.removeAllFromCache(); // load only the minimum cache, it has several members missing - final Geocache minimalCache = DataStore.loadCache(geocode, EnumSet.of(LoadFlag.LOAD_DB_MINIMAL)); + final Geocache minimalCache = DataStore.loadCache(geocode, EnumSet.of(LoadFlag.DB_MINIMAL)); // now check that we load lazy members on demand assertThat(minimalCache.getAttributes()).isNotEmpty(); |
