Skip to content

Commit

Permalink
clarify dummy endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ccmtaylor committed Jun 10, 2014
1 parent 42d73e4 commit 3e687ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/retromock/MockClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public Response createFrom(Request request) throws IOException {
;
RestAdapter restAdapter = new RestAdapter.Builder()
.setClient(client)
.setEndpoint("http://localhost/")
.setEndpoint("http://example.org/") // ignored, but we need to set some value
.build();
TestCase testCase = restAdapter.create(TestCase.class);
assertEquals("Hello, World", testCase.get());
Expand Down

0 comments on commit 3e687ea

Please sign in to comment.