Skip to content

Commit

Permalink
Rebased and everything fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
wakr committed Sep 12, 2015
1 parent c8f842c commit d35f7b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import fi.helsinki.cs.tmc.core.exceptions.ExpiredException;
import fi.helsinki.cs.tmc.core.exceptions.TmcCoreException;
import fi.helsinki.cs.tmc.core.testhelpers.ExampleJson;
import fi.helsinki.cs.tmc.langs.domain.NoLanguagePluginFoundException;

import com.github.tomakehurst.wiremock.client.WireMock;
import com.github.tomakehurst.wiremock.junit.WireMockRule;
Expand Down Expand Up @@ -183,7 +184,7 @@ public void submitWithTmcCore() throws Exception {
public void testSubmissionWithObserver()
throws URISyntaxException, ExpiredException,
TmcCoreException, ParseException,
IOException, InterruptedException {
IOException, InterruptedException, NoLanguagePluginFoundException {

when(submitterMock.submit(eq(path), eq(observer))).thenReturn(URI.create("xkcd.com"));
submitWithObserver.call();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ public class SubmissionPollerTest {

private SubmissionPoller submissionPoller;
private URI url = URI.create(
<<<<<<< HEAD
"https://example.com/staging/submissions/1764.json?api_version=7&client=tmc_cli&client_version=1");
=======
"https://tmc.mooc.fi/staging/submissions/1764.json?api_version=7&client=tmc_cli&client_version=1");
>>>>>>> fix indentation and import orders
private CoreTestSettings settings;
private TmcApi tmcApi;

Expand Down

0 comments on commit d35f7b3

Please sign in to comment.