From 488744a005fb399af8d094ad7a62c1917410398c Mon Sep 17 00:00:00 2001 From: venkata edara Date: Wed, 22 Nov 2017 13:35:46 +0530 Subject: Rebase to Swift 2.15.1 (pike) Change-Id: I84ebb44c5c3cf2f80c50f2d4ae4bd92b619a4297 Signed-off-by: venkata edara Reviewed-on: https://review.gluster.org/18412 Reviewed-by: Prashanth Pai Tested-by: Prashanth Pai --- test/functional/test_container.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/functional/test_container.py') diff --git a/test/functional/test_container.py b/test/functional/test_container.py index 5abaaa5..fefa35a 100755 --- a/test/functional/test_container.py +++ b/test/functional/test_container.py @@ -627,7 +627,7 @@ class TestContainer(unittest2.TestCase): resp.read() self.assertEqual(resp.status, 403) - # Now make the container also writeable by the second account + # Now make the container also writable by the second account def post(url, token, parsed, conn): conn.request('POST', parsed.path + '/' + self.name, '', {'X-Auth-Token': token, @@ -696,7 +696,7 @@ class TestContainer(unittest2.TestCase): resp.read() self.assertEqual(resp.status, 403) - # Now make the container also writeable by the third account + # Now make the container also writable by the third account def post(url, token, parsed, conn): conn.request('POST', parsed.path + '/' + self.name, '', {'X-Auth-Token': token, @@ -732,7 +732,6 @@ class TestContainer(unittest2.TestCase): def put(url, token, parsed, conn, name): conn.request('PUT', parsed.path + '/%s' % name, '', {'X-Auth-Token': token}) - print("PUT X-Auth-Token:%s"%(token)) return check_response(conn) # cannot list containers -- cgit