Skip to content

Commit

Permalink
fix weird etag match failure under some environments
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Mar 15, 2013
1 parent 7eb89d2 commit 0fc8137
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -133,7 +133,7 @@ public void testGetDatastreamContent() throws Exception {
.equals(EntityUtils.toString(response
.getEntity())));

assertEquals("urn:sha1:ba6cb22191300aebcfcfb83de9635d6b224677df", response.getFirstHeader("ETag").getValue());
assertEquals("urn:sha1:ba6cb22191300aebcfcfb83de9635d6b224677df", response.getFirstHeader("ETag").getValue().replace("\"", ""));



Expand Down

0 comments on commit 0fc8137

Please sign in to comment.