Skip to content

Commit e839e9d

Browse files
committed
silence warning, trigger build
1 parent 0987bf3 commit e839e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stream_chat/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_update_channel_type(self, client):
3434

3535
def test_create_token(self, client):
3636
token = client.create_token("tommaso")
37-
payload = jwt.decode(token, client.api_secret, algorithm="HS256")
37+
payload = jwt.decode(token, client.api_secret, algorithms=["HS256"])
3838
assert payload.get("user_id") == "tommaso"
3939

4040
def test_get_app_settings(self, client):

0 commit comments

Comments
 (0)