Open GoogleCodeExporter opened 8 years ago
Its not an issue with Set. On further analysis i figured out its with getting
header value.
When i set the header in the log i can see its setting the non-Ascii data
correctly. Where in when i do a get using
Response response =
expect().
statusCode(204).
given().
headers("X-Auth-Token", authToken).
head(fixture.SERVICERESTENDPOINT);
String metatips = response.getHeader("X-Account-Meta-Tips123").toString();
assertEquals("μεταδεδομένα", metatips);
Its displaying garbled value.
Is there any limitation to response.getHeader(" ").toString(); ??
When i tried setting Ascii characters its working fine.
Original comment by kavita...@gmail.com
on 22 Jul 2015 at 12:23
Original issue reported on code.google.com by
kavita...@gmail.com
on 21 Jul 2015 at 8:36