Replace hard-coded test accounts with user-configured values

Change-Id: I824ba5f231e252b923abc895f757137855a93d3a
This commit is contained in:
Jason Johnson 2012-11-27 10:39:12 -06:00
parent 2ad23a25e8
commit 48ebd6732e
1 changed files with 3 additions and 3 deletions

View File

@ -382,8 +382,8 @@ class TestContainer(unittest.TestCase):
# Make the container accessible by the second account
def post(url, token, parsed, conn):
conn.request('POST', parsed.path + '/' + self.name, '',
{'X-Auth-Token': token, 'X-Container-Read': 'test2',
'X-Container-Write': 'test2'})
{'X-Auth-Token': token, 'X-Container-Read': swift_test_user[1],
'X-Container-Write': swift_test_user[1]})
return check_response(conn)
resp = retry(post)
resp.read()
@ -450,7 +450,7 @@ class TestContainer(unittest.TestCase):
# Now make the container also writeable by the second account
def post(url, token, parsed, conn):
conn.request('POST', parsed.path + '/' + self.name, '',
{'X-Auth-Token': token, 'X-Container-Write': 'test2'})
{'X-Auth-Token': token, 'X-Container-Write': swift_test_user[1]})
return check_response(conn)
resp = retry(post)
resp.read()