Skip to content

Commit

Permalink
APPNG-2180 getBinaryData() must accept any type
Browse files Browse the repository at this point in the history
  • Loading branch information
madness-inc committed Sep 12, 2018
1 parent 67fda12 commit e05a4c0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ public void testCookies() {
cookies.put("foo", "bar");
cookies.put("lore", "ipsum");
RestClient restClient = new RestClient("foo", cookies);
List<String> cookieList = restClient.getHeaders().get(HttpHeaders.COOKIE);
List<String> cookieList = restClient.getHeaders(false).get(HttpHeaders.COOKIE);
Assert.assertTrue(cookieList.contains("foo=bar"));
Assert.assertTrue(cookieList.contains("lore=ipsum"));
}
Expand Down

0 comments on commit e05a4c0

Please sign in to comment.