>                 .create("http://fooman:8080/v1/token";))));
> +
> +
> +      // Additional test that verifies that the case insensitive header 
> "X-Storage-Url" is actually replaced
> +      //     https://issues.apache.org/jira/browse/JCLOUDS-155
> +      response = HttpResponse.builder().statusCode(204).message("No Content")
> +              .addHeader("X-Auth-Token".toLowerCase(), "token")
> +              .addHeader("X-Storage-Token".toLowerCase(), "token")
> +              .addHeader("X-Storage-Url".toLowerCase(), 
> "http://127.0.0.1:8080/v1/token";).build();

Just make these lowercase? E.g.
```
.addHeader("x-auth-token", "token")
```
etc.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/76/files#r5466065

Reply via email to