> @@ -555,6 +555,14 @@ public void testPutMultipartInputStream() throws
> Exception {
> testPut(payload, new ByteSourcePayload(byteSource), length, new
> PutOptions().multipart(true));
> }
>
> + /* Java on OS X does not support extended attributes, which the
> filesystem backend
> + * uses to implement user metadata */
> + private void checkUserMetadata(Blob blob, Map<String, String>
> userMetadata1, Map<String, String> userMetadata2) {
> + if ("filesystem".equals(blob.getMetadata().getProviderId()) &&
> !TestUtils.isMacOSX()) {
Can you make this method protected and override it in
`FilesystemBlobIntegrationTest`? We follow this pattern for other attributes
like system metadata.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/648/files#r23253661