summaryrefslogtreecommitdiffstats
path: root/cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java')
-rw-r--r--cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java b/cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java
index 6f7cb12c..18057a79 100644
--- a/cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java
+++ b/cobbler4j/src/org/fedorahosted/cobbler/test/Fixture.java
@@ -10,11 +10,13 @@ public class Fixture {
public static final String user = "testing";
public static final String pass = "testing";
public static CobblerConnection cobblercon;
+ public static Finder finder;
@BeforeClass
public static void establishConnection() {
cobblercon = new CobblerConnection("http://192.168.1.1",
user, pass);
+ finder = Finder.getInstance();
}
}