> @@ -545,7 +541,9 @@ public void testOverwriteBlobMetadata() throws Exception {
> storageStrategy.putBlob(CONTAINER_NAME, blob);
>
> blob = storageStrategy.getBlob(CONTAINER_NAME, blobKey);
> - assertEquals(blob.getMetadata().getUserMetadata().get("key1"),
> "value1");
> + if (!blob.getMetadata().getUserMetadata().containsKey("key1")) {
> + throw new SkipException("Underlying filesystem does not support
> xattr");
> + }
> We could check the result of ... instead
Sounds like a good plan!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/510/files#r17204225