> @Test(dataProvider = "ignoreOnMacOSX")
> @Override
> public void testCreateBlobWithExpiry() throws InterruptedException {
> super.testCreateBlobWithExpiry();
> }
> +
> + @Test(dataProvider = "ignoreOnMacOSX")
> + @Override
> + public void testPutByteSource() throws Exception {
> + super.testPutByteSource();
> + }
> +
> + @Test(dataProvider = "ignoreOnMacOSX")
> + @Override
> + public void testPutInputStream() throws Exception {
> + super.testPutInputStream();
This doesn't seem like the right approach. Instead this should override
`checkContentMetadata` and similar.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/643/files#r22888595