From 9d996c567d53a024597c9d88b80439255568e11e Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 27 Apr 2016 17:17:57 -0400 Subject: [PATCH] test/rgw: enable mtime comparison in check_object_eq() Signed-off-by: Casey Bodley --- src/test/rgw/test_multi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/rgw/test_multi.py b/src/test/rgw/test_multi.py index 1aa7f830c7c6..731b369288ce 100644 --- a/src/test/rgw/test_multi.py +++ b/src/test/rgw/test_multi.py @@ -623,7 +623,7 @@ def check_object_eq(k1, k2, check_extra = True): eq(k1.content_disposition, k2.content_disposition) eq(k1.content_language, k2.content_language) eq(k1.etag, k2.etag) - # eq(k1.last_modified, k2.last_modified) + eq(k1.last_modified, k2.last_modified) if check_extra: eq(k1.owner.id, k2.owner.id) eq(k1.owner.display_name, k2.owner.display_name) -- 2.47.3