From ccb50cb5582d8dd1e79bb3e5b0ec77f4ed788873 Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Sun, 4 Dec 2011 09:05:14 +0100 Subject: fix unit test which is red since more than a week --- tests/src/cgeo/geocaching/cgeoApplicationTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/src/cgeo/geocaching/cgeoApplicationTest.java b/tests/src/cgeo/geocaching/cgeoApplicationTest.java index 3a0dd6f..2a27862 100644 --- a/tests/src/cgeo/geocaching/cgeoApplicationTest.java +++ b/tests/src/cgeo/geocaching/cgeoApplicationTest.java @@ -112,10 +112,10 @@ public class cgeoApplicationTest extends ApplicationTestCase { */ @MediumTest public static void testSearchByOwner() { - final cgSearch search = cgBase.searchByOwner(null, "blafoo", CacheType.EVENT, 0, false); + final cgSearch search = cgBase.searchByOwner(null, "blafoo", CacheType.MYSTERY, 0, false); assertNotNull(search); - assertEquals(1, search.getGeocodes().size()); - assertTrue(search.getGeocodes().contains("GC36K5E")); + assertEquals(3, search.getGeocodes().size()); + assertTrue(search.getGeocodes().contains("GC36RT6")); } /** -- cgit v1.1