Skip to content

Commit

Permalink
new in v2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlong committed Sep 30, 2016
1 parent 8ab6ac8 commit 96037e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void contextLoaded() throws Throwable {
.basicAuthorization("pwebb", "boot").build();
ResponseEntity<String> response = restTemplate
.getForEntity("http://localhost:" + this.port + "/hi", String.class);
assertThat(response.getBody()).containsIgnoringCase("hello");
assertThat(response.getBody()).containsIgnoringCase("hello, pwebb");
System.out.println("received: " + response.getBody());
}

Expand Down

0 comments on commit 96037e4

Please sign in to comment.