mirror of https://github.com/apache/jclouds.git
fixed s3 test
This commit is contained in:
parent
b81156a1f3
commit
b0f37625ec
|
@ -64,8 +64,9 @@ public class CopyObjectOptionsTest {
|
|||
@BeforeMethod
|
||||
void setUp() {
|
||||
goodMeta = ImmutableMap.of(USER_METADATA_PREFIX + "adrian", "foo");
|
||||
now = new Date();
|
||||
nowExpected = new SimpleDateFormatDateService().rfc822DateFormat(now);
|
||||
Date date = new Date();
|
||||
nowExpected = new SimpleDateFormatDateService().rfc822DateFormat(date);
|
||||
now = new SimpleDateFormatDateService().rfc822DateParse(nowExpected);
|
||||
etag = "mama";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue