diff options
| author | koem <koem@petoria.de> | 2011-10-10 17:25:56 +0200 |
|---|---|---|
| committer | koem <koem@petoria.de> | 2011-10-11 08:57:59 +0200 |
| commit | 2e6caaa61eff54f717da0810f9ab748a7f6dffbe (patch) | |
| tree | 3b6fdbbddef677fba1fbb4c95c739d330134653c /tests/src/cgeo/geocaching/files | |
| parent | bfa29b4962bee99f7b16b6900e424915fa2201e2 (diff) | |
| download | cgeo-2e6caaa61eff54f717da0810f9ab748a7f6dffbe.zip cgeo-2e6caaa61eff54f717da0810f9ab748a7f6dffbe.tar.gz cgeo-2e6caaa61eff54f717da0810f9ab748a7f6dffbe.tar.bz2 | |
use WaypointType
Diffstat (limited to 'tests/src/cgeo/geocaching/files')
| -rw-r--r-- | tests/src/cgeo/geocaching/files/GPXParserTest.java | 4 |
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 d62bd4f..57222fe 100644 --- a/tests/src/cgeo/geocaching/files/GPXParserTest.java +++ b/tests/src/cgeo/geocaching/files/GPXParserTest.java @@ -159,7 +159,7 @@ public class GPXParserTest extends InstrumentationTestCase { assertEquals("---", wp.lookup); assertEquals("Parkplatz", wp.name); assertEquals("Kostenfreies Parken (je nach Parkreihe Parkscheibe erforderlich)", wp.note); - assertEquals(WaypointType.PKG, wp.typee); + assertEquals(WaypointType.PKG, wp.type); assertEquals(49.317517, wp.coords.getLatitude(), 0.000001); assertEquals(8.545083, wp.coords.getLongitude(), 0.000001); @@ -169,7 +169,7 @@ public class GPXParserTest extends InstrumentationTestCase { assertEquals("---", wp.lookup); assertEquals("Station 1", wp.name); assertEquals("Ein zweiter Wegpunkt, der nicht wirklich existiert sondern nur zum Testen gedacht ist.", wp.note); - assertEquals(WaypointType.STAGE, wp.typee); + assertEquals(WaypointType.STAGE, wp.type); assertEquals(49.317500, wp.coords.getLatitude(), 0.000001); assertEquals(8.545100, wp.coords.getLongitude(), 0.000001); } |
