Fixed seperation in test token

This commit is contained in:
Shawn Niederriter 2017-04-17 15:11:08 +00:00
parent 5e7eeb079d
commit e48fc22513
2 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ class Request(dict):
:return: token related to request :return: token related to request
""" """
self._token = getattr(self, '_token', self._token = getattr(self, '_token',
self.headers.get('Authorization')) self.headers.get('Authorization'))
return self._token return self._token

View File

@ -141,10 +141,10 @@ def test_token():
return text('OK') return text('OK')
# uuid4 generated token. # uuid4 generated token.
token = 'a1d895e0-553a-421a-8e22-5ff8ecb48cbf' token = 'Token a1d895e0-553a-421a-8e22-5ff8ecb48cbf'
headers = { headers = {
'content-type': 'application/json', 'content-type': 'application/json',
'Authorization': 'Token {}'.format(token) 'Authorization': '{}'.format(token)
} }
request, response = app.test_client.get('/', headers=headers) request, response = app.test_client.get('/', headers=headers)