mirror of https://github.com/apache/jclouds.git
Skip unimplemented test with transient blobstore
This commit is contained in:
parent
1fc5806ec9
commit
94452a97cd
|
@ -16,7 +16,10 @@
|
|||
*/
|
||||
package org.jclouds.blobstore.integration;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
|
||||
import org.testng.SkipException;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
|
@ -29,4 +32,9 @@ public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest {
|
|||
public TransientBlobIntegrationTest() {
|
||||
provider = "transient";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testPutIncorrectContentMD5() throws InterruptedException, IOException {
|
||||
throw new SkipException("not yet implemented");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue