diff options
author | Michael Keppler <michael.keppler@gmx.de> | 2014-04-21 10:52:15 +0200 |
---|---|---|
committer | Michael Keppler <michael.keppler@gmx.de> | 2014-04-21 10:52:15 +0200 |
commit | 290e4c72ab62faf027c5caaf2bfdaff8f6ed05bc (patch) | |
tree | f5183ed7c834f7f544cba1d67aa336fb439791ee /tests | |
parent | f19bf663018aba3034bf548d369a11b4cd63407e (diff) | |
download | cgeo-290e4c72ab62faf027c5caaf2bfdaff8f6ed05bc.zip cgeo-290e4c72ab62faf027c5caaf2bfdaff8f6ed05bc.tar.gz cgeo-290e4c72ab62faf027c5caaf2bfdaff8f6ed05bc.tar.bz2 |
#3777: fix CI test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/cgeo/geocaching/test/mock/GC3XX5J.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/src/cgeo/geocaching/test/mock/GC3XX5J.java b/tests/src/cgeo/geocaching/test/mock/GC3XX5J.java index ea8079b..b07c4d0 100644 --- a/tests/src/cgeo/geocaching/test/mock/GC3XX5J.java +++ b/tests/src/cgeo/geocaching/test/mock/GC3XX5J.java @@ -5,6 +5,7 @@ import cgeo.geocaching.enumerations.CacheSize; import cgeo.geocaching.enumerations.CacheType; import cgeo.geocaching.enumerations.LogType; import cgeo.geocaching.geopoint.Geopoint; +import cgeo.geocaching.settings.Settings; import java.text.ParseException; import java.util.Date; @@ -133,4 +134,9 @@ public class GC3XX5J extends MockedCache { public String getShortDescription() { return "Kadar zbolimo nam pomaga...<br /> <br /> When we get sick, they are helpful..."; } + + @Override + public boolean isFound() { + return Settings.getUsername().equals("mucek4"); + } } |