From e4a2c88fba25c6d504ea801c3b3f2b2dc051b30e Mon Sep 17 00:00:00 2001 From: Lennart <1247198+totalimmersion@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:56:47 +0100 Subject: [PATCH] fix: update stream_chat/tests/test_channel.py Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- stream_chat/tests/test_channel.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stream_chat/tests/test_channel.py b/stream_chat/tests/test_channel.py index 058be63..c29028f 100644 --- a/stream_chat/tests/test_channel.py +++ b/stream_chat/tests/test_channel.py @@ -444,9 +444,7 @@ def test_update_member_partial(self, channel: Channel, random_users: List[Dict]) # Test setting a new field while unsetting the previous one response = channel.update_member_partial( - user_id, - set={"color": "red"}, - unset=["hat"] + user_id, set={"color": "red"}, unset=["hat"] ) assert response["channel_member"]["color"] == "red" assert "hat" not in response["channel_member"]