Making all tox tests pass after pep8 fix.

Covers a few unexplained dedents (pep8ify missed them)
and an accidental use of b'.'.
This commit is contained in:
Danny Hermes
2015-08-20 16:18:42 -07:00
parent d7c0c38b8d
commit b66838e48d
3 changed files with 6 additions and 6 deletions

View File

@@ -1273,7 +1273,7 @@ class OAuth2WebServerFlowTest(unittest.TestCase):
payload = (b'{'
b' "access_token":"SlAV32hkKG",'
b' "refresh_token":"8xLOxBtZp8",'
b' "id_token": "' + jwt + '"'
b' "id_token": "' + jwt + b'"'
b'}')
http = HttpMockSequence([({'status': '200'}, payload)])
credentials = self.flow.step2_exchange('some random code', http=http)