Removed @Ignore for Tomcat tests

This commit is contained in:
Ryan Baxter
2016-12-12 15:27:51 -05:00
parent 216ae1ba6e
commit d05288598a

View File

@@ -39,14 +39,12 @@ public class TomcatAppTests {
@Test
@Ignore
public void ribbonTest() throws Exception {
ResponseEntity<String> responseEntity = restTemplate.getForEntity("/self/good", String.class);
assertThat(responseEntity.getBody(), is("GOOD!"));
}
@Test
@Ignore
public void sendResponseTest() throws Exception {
ResponseEntity<String> responseEntity = restTemplate.getForEntity("/goodurl", String.class);
assertThat(responseEntity.getBody(), is("GOOD!"));