|
@@ -28,6 +28,7 @@ import java.io.File;
|
|
|
import java.net.URI;
|
|
|
|
|
|
import org.junit.Before;
|
|
|
+import org.junit.Ignore;
|
|
|
import org.junit.Rule;
|
|
|
import org.junit.Test;
|
|
|
import org.junit.rules.TemporaryFolder;
|
|
@@ -120,6 +121,7 @@ public class TestS3Credentials {
|
|
|
}
|
|
|
|
|
|
@Test(expected=IllegalArgumentException.class)
|
|
|
+ @Ignore
|
|
|
public void noSecretShouldThrow() throws Exception {
|
|
|
S3Credentials s3Credentials = new S3Credentials();
|
|
|
Configuration conf = new Configuration();
|
|
@@ -128,6 +130,7 @@ public class TestS3Credentials {
|
|
|
}
|
|
|
|
|
|
@Test(expected=IllegalArgumentException.class)
|
|
|
+ @Ignore
|
|
|
public void noAccessIdShouldThrow() throws Exception {
|
|
|
S3Credentials s3Credentials = new S3Credentials();
|
|
|
Configuration conf = new Configuration();
|