Skip to content

Commit d09ba85

Browse files
authored
Update session_token_test.py
1 parent cd40b61 commit d09ba85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/session_token_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def test_raises_if_aud_doesnt_match_api_key(self):
7979
with self.assertRaises(session_token.SessionTokenError) as cm:
8080
session_token.decode_from_header(self.build_auth_header(), api_key=self.api_key, secret=self.secret)
8181

82-
self.assertEqual("Invalid audience", str(cm.exception))
82+
self.assertEqual("Audience doesn't match", str(cm.exception))
8383

8484
def test_raises_if_issuer_hostname_is_invalid(self):
8585
self.payload["iss"] = "bad_shop_hostname"

0 commit comments

Comments
 (0)