]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/rgw: fix issue error in tests_ps.py 34892/head
authorJ. Eric Ivancich <ivancich@redhat.com>
Mon, 4 May 2020 15:35:25 +0000 (11:35 -0400)
committerJ. Eric Ivancich <ivancich@redhat.com>
Mon, 4 May 2020 15:35:25 +0000 (11:35 -0400)
The Python interpreter on teuthology complains about the lack of
parens in a print statement.

Signed-off-by: J. Eric Ivancich <ivancich@redhat.com>
src/test/rgw/rgw_multi/tests_ps.py

index b5c3396dfc490ac224a1749f38710329396a5d81..4dfa873e192f4d17d3761f452619e14224867c2d 100644 (file)
@@ -2744,7 +2744,7 @@ def test_ps_s3_multipart_on_master():
     assert_equal(len(events), 1)
     assert_equal(events[0]['Records'][0]['eventName'], 's3:ObjectCreated:CompleteMultipartUpload')
     assert_equal(events[0]['Records'][0]['s3']['configurationId'], notification_name+'_3')
-    print events[0]['Records'][0]['s3']['object']['size']
+    print(events[0]['Records'][0]['s3']['object']['size'])
 
     # cleanup
     stop_amqp_receiver(receiver1, task1)