diff options
| author | SammysHP <sven@sammyshp.de> | 2012-01-03 22:28:54 +0100 |
|---|---|---|
| committer | SammysHP <sven@sammyshp.de> | 2012-01-03 22:28:54 +0100 |
| commit | 15f068b9a89d63d75e09dc60302b6242d5724613 (patch) | |
| tree | 14fab308295a70e0e4c01570f6fea74d3ea20788 /tests | |
| parent | ad412746a52da89321e366a14c78b73b861d2f8c (diff) | |
| download | cgeo-15f068b9a89d63d75e09dc60302b6242d5724613.zip cgeo-15f068b9a89d63d75e09dc60302b6242d5724613.tar.gz cgeo-15f068b9a89d63d75e09dc60302b6242d5724613.tar.bz2 | |
Fix tests
as result of f1217089bd35e227b2e0cf792e05676c2caec5dc
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/src/cgeo/geocaching/TrackablesTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/cgeo/geocaching/TrackablesTest.java b/tests/src/cgeo/geocaching/TrackablesTest.java index f66d33c..6d17541 100644 --- a/tests/src/cgeo/geocaching/TrackablesTest.java +++ b/tests/src/cgeo/geocaching/TrackablesTest.java @@ -37,7 +37,7 @@ public class TrackablesTest extends AbstractResourceInstrumentationTestCase { } public void testParseTrackableWithoutReleaseDate() { - cgTrackable trackable = cgBase.parseTrackable(getFileContent(R.raw.tb14wfv), null); + cgTrackable trackable = cgBase.parseTrackable(getFileContent(R.raw.tb14wfv), null, null); assertNotNull(trackable); assertEquals("The Brickster", trackable.getName()); assertEquals("Adrian C", trackable.getOwner()); @@ -50,6 +50,6 @@ public class TrackablesTest extends AbstractResourceInstrumentationTestCase { } private cgTrackable getTB2R124() { - return cgBase.parseTrackable(BaseUtils.replaceWhitespace(getFileContent(R.raw.trackable_tb2r124)), null); + return cgBase.parseTrackable(BaseUtils.replaceWhitespace(getFileContent(R.raw.trackable_tb2r124)), null, null); } } |
