--- a/test/net/timbusproject/dpes/alternative/ReasonerClient/common/TestHelper.java
+++ b/test/net/timbusproject/dpes/alternative/ReasonerClient/common/TestHelper.java
@@ -18,8 +18,6 @@
 
 package net.timbusproject.dpes.alternative.ReasonerClient.common;
 
-import net.timbusproject.dpes.alternative.ReasonerClient.REST.RequestData;
-
 import java.util.ArrayList;
 import java.util.List;
 
@@ -28,12 +26,18 @@
     public static RequestData createTestRequest() {
         List<String> toInstall = new ArrayList<String>() {{ add("jetty"); }};
         List<String> toRemove = new ArrayList<String>() {{ add("tomcat"); }};
-        return new RequestData(toInstall, toRemove, "target01", "dataset01");
+        return new RequestData(toInstall, toRemove, "target01", "dataset01", "ontology01", "universe01");
     }
 
     public static RequestData createWorkingTestRequest() {
         List<String> toInstall = new ArrayList<String>() {{ add("vim"); }};
         List<String> toRemove = new ArrayList<>();
-        return new RequestData(toInstall, toRemove, "4649fd96-cbe2-4f93-babf-4627ef9ee5e6", "/examples_Health");
+        return new RequestData(
+                toInstall,
+                toRemove,
+                "xri://+machine?+hostid=007f0101/+hostname=phaidra",
+                "WP7-PhaidraX",
+                "http://testbed.timbusproject.net/ontologies/WP7-Phaidra-phaidra-software",
+                "http://testbed.timbusproject.net/ontologies/universes/WP7-Phaidra-phaidra-software");
     }
 }