Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java')
-rw-r--r--plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java b/plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java
index f87cf1703a0..77aec5cac23 100644
--- a/plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java
+++ b/plugins/org.eclipse.osee.ote.rest.client/src/org/eclipse/osee/ote/rest/client/internal/RunTests.java
@@ -5,7 +5,7 @@ import java.util.concurrent.Callable;
import java.util.logging.Level;
import javax.ws.rs.core.MediaType;
import org.eclipse.osee.framework.logging.OseeLog;
-import org.eclipse.osee.jaxrs.client.WebClientProvider;
+import org.eclipse.osee.jaxrs.client.JaxRsClient;
import org.eclipse.osee.ote.rest.client.Progress;
import org.eclipse.osee.ote.rest.client.ProgressWithCancel;
import org.eclipse.osee.ote.rest.model.OTEJobStatus;
@@ -17,11 +17,11 @@ public class RunTests implements ProgressWithCancel, Callable<ProgressWithCancel
private final URI uri;
private final OTETestRun tests;
private final Progress progress;
- private final WebClientProvider factory;
+ private final JaxRsClient factory;
private OTEJobStatus status;
private String id;
- public RunTests(URI uri, OTETestRun tests, Progress progress, WebClientProvider factory) {
+ public RunTests(URI uri, OTETestRun tests, Progress progress, JaxRsClient factory) {
this.uri = uri;
this.tests = tests;
this.progress = progress;

Back to the top