mirror of https://github.com/apache/jclouds.git
Issue 70: unicode tests should be named as such, nesting these inside acl tests confuses the tester
git-svn-id: http://jclouds.googlecode.com/svn/trunk@1487 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
8db94120fc
commit
c8669a63c3
|
@ -69,7 +69,7 @@ public class GetAccessControlListIntegrationTest extends S3IntegrationTest {
|
|||
@Test
|
||||
void testPrivateAclIsDefaultForObject() throws InterruptedException, ExecutionException,
|
||||
TimeoutException, IOException {
|
||||
String privateObjectKey = "pr“vate-acl";
|
||||
String privateObjectKey = "private-acl";
|
||||
String bucketName = getBucketName();
|
||||
try {
|
||||
// Private object
|
||||
|
@ -90,7 +90,7 @@ public class GetAccessControlListIntegrationTest extends S3IntegrationTest {
|
|||
@Test
|
||||
void testPublicReadOnObject() throws InterruptedException, ExecutionException, TimeoutException,
|
||||
IOException {
|
||||
String publicReadObjectKey = "pŸblic-read-acl";
|
||||
String publicReadObjectKey = "public-read-acl";
|
||||
String bucketName = getBucketName();
|
||||
try {
|
||||
client.putObject(bucketName, new S3Object(publicReadObjectKey, ""), new PutObjectOptions()
|
||||
|
@ -114,7 +114,7 @@ public class GetAccessControlListIntegrationTest extends S3IntegrationTest {
|
|||
@Test
|
||||
void testPublicWriteOnObject() throws InterruptedException, ExecutionException,
|
||||
TimeoutException, IOException {
|
||||
String publicReadWriteObjectKey = "pŸblic-read-write-acl";
|
||||
String publicReadWriteObjectKey = "public-read-write-acl";
|
||||
String bucketName = getBucketName();
|
||||
try {
|
||||
// Public Read-Write object
|
||||
|
|
Loading…
Reference in New Issue