Skip to content

Commit

Permalink
Fixed #176 HttpResponseException: Not Found (createJob)
Browse files Browse the repository at this point in the history
 o Followup and fix the appropriate test to use the correct
   verifier.
  • Loading branch information
khmarbaise committed Aug 18, 2016
1 parent 426797a commit c60dd5a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 76 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public void testCreateJob() throws Exception {

// then
ArgumentCaptor<String> captureString = ArgumentCaptor.forClass(String.class);
verify(client).post_xml(eq("/createItem?name=" + jobName), captureString.capture(), eq(true));
verify(client).post_xml(eq("/createItem?name=" + jobName), captureString.capture(), eq(false));
String xmlReturn = captureString.getValue();
assertEquals(xmlReturn, xmlString);
}
Expand Down

0 comments on commit c60dd5a

Please sign in to comment.