Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
yugangw-msft committed Apr 23, 2018
1 parent c7b8870 commit 745217f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_authorization_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_happy_path(self):
util.match_standard_request_headers(req)

# verify the same entry was cached
cached_items = context.cache.read_items()
cached_items = list(context.cache.read_items())
self.assertTrue(len(cached_items) == 1)
_, cached_entry = cached_items[0]
self.assertEqual(cached_entry, token_response)
Expand Down

0 comments on commit 745217f

Please sign in to comment.