removes println

This commit is contained in:
Spencer Gibb
2018-11-15 11:16:30 -05:00
parent 0eb7206ab9
commit 3dc99dacf5

View File

@@ -236,7 +236,6 @@ public class ProductionConfigurationTests {
public void headers() throws Exception {
Map<String, List<String>> headers = rest.exchange(RequestEntity.get(rest.getRestTemplate().getUriTemplateHandler()
.expand("/proxy/headers")).header("foo", "bar").header("abc", "xyz").build(), Map.class).getBody();
System.out.println(headers);
assertThat(headers).doesNotContainKey("foo")
.doesNotContainKey("hello")
.containsKeys("bar", "abc");