We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0987bf3 commit e839e9dCopy full SHA for e839e9d
stream_chat/tests/test_client.py
@@ -34,7 +34,7 @@ def test_update_channel_type(self, client):
34
35
def test_create_token(self, client):
36
token = client.create_token("tommaso")
37
- payload = jwt.decode(token, client.api_secret, algorithm="HS256")
+ payload = jwt.decode(token, client.api_secret, algorithms=["HS256"])
38
assert payload.get("user_id") == "tommaso"
39
40
def test_get_app_settings(self, client):
0 commit comments