Issue 70, three question marks sometimes gets converted to �. Testing question marks should be independent of weird character conversion tests

git-svn-id: http://jclouds.googlecode.com/svn/trunk@1486 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-06-29 09:38:04 +00:00
parent da67580497
commit 8db94120fc
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ public class DeleteObjectIntegrationTest extends S3IntegrationTest {
void deleteObjectQuestion() throws Exception {
String bucketName = getBucketName();
try {
addObjectToBucket(bucketName, "p???blic-read-acl");
assert client.deleteObject(bucketName, "p???blic-read-acl").get(10, TimeUnit.SECONDS);
addObjectToBucket(bucketName, "p?blic-read-acl");
assert client.deleteObject(bucketName, "p?blic-read-acl").get(10, TimeUnit.SECONDS);
} finally {
returnBucket(bucketName);
}