aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java')
-rw-r--r--tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java b/tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java
index e763881..beedd51 100644
--- a/tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java
+++ b/tests/src/cgeo/geocaching/filter/StateFoundFilterTest.java
@@ -4,18 +4,17 @@ import static org.assertj.core.api.Assertions.assertThat;
import cgeo.CGeoTestCase;
import cgeo.geocaching.Geocache;
-import cgeo.geocaching.filter.StateFilter.StateFoundFilter;
public class StateFoundFilterTest extends CGeoTestCase {
- private StateFilter.StateFoundFilter foundFilter;
+ private StateFilterFactory.StateFoundFilter foundFilter;
private Geocache foundCache;
@Override
protected void setUp() throws Exception {
super.setUp();
- foundFilter = new StateFoundFilter();
+ foundFilter = new StateFilterFactory.StateFoundFilter();
foundCache = new Geocache();
foundCache.setFound(true);
}