From 17a6b22a8f871313841883d35dcae1234606276f Mon Sep 17 00:00:00 2001 From: "J. Eric Ivancich" Date: Mon, 4 May 2020 11:35:25 -0400 Subject: [PATCH] qa/rgw: fix issue error in tests_ps.py The Python interpreter on teuthology complains about the lack of parens in a print statement. Signed-off-by: J. Eric Ivancich (cherry picked from commit 92180651095924baaaf33286998e32c687744a2b) --- src/test/rgw/rgw_multi/tests_ps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/rgw/rgw_multi/tests_ps.py b/src/test/rgw/rgw_multi/tests_ps.py index b9446b867022..b867253b8055 100644 --- a/src/test/rgw/rgw_multi/tests_ps.py +++ b/src/test/rgw/rgw_multi/tests_ps.py @@ -2745,7 +2745,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) -- 2.47.3