From 303e4a1d83bc94793a47756b9d0b3f169c1eeb23 Mon Sep 17 00:00:00 2001 From: Michael Barton Date: Thu, 4 Aug 2016 03:05:40 +0000 Subject: [PATCH] missing parens in functional test I was watching the logs and noticed it creates an object named: ">" Change-Id: I8dcbb40125b84a914e3c01566ae9c3f08dc9ea0f --- test/functional/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/tests.py b/test/functional/tests.py index 29194964d1..82b91d9a26 100644 --- a/test/functional/tests.py +++ b/test/functional/tests.py @@ -2976,7 +2976,7 @@ class TestSlo(Base): def test_slo_container_listing(self): # the listing object size should equal the sum of the size of the # segments, not the size of the manifest body - file_item = self.env.container.file(Utils.create_name) + file_item = self.env.container.file(Utils.create_name()) file_item.write( json.dumps([self.env.seg_info['seg_a']]), parms={'multipart-manifest': 'put'})