Skip to content

Commit f8fac50

Browse files
Update stream_chat/tests/test_client.py
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4cb92c2 commit f8fac50

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stream_chat/tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,9 @@ def test_mark_delivered_simple(self, client: StreamChat, channel: Channel, rando
10521052
assert response is not None
10531053

10541054
def test_mark_delivered_validation(self, client: StreamChat, random_user: Dict):
1055-
with pytest.raises(ValueError, match="latest_delivered_messages must not be empty"):
1055+
with pytest.raises(
1056+
ValueError, match="latest_delivered_messages must not be empty"
1057+
):
10561058
client.mark_delivered({"user_id": random_user["id"]})
10571059

10581060
with pytest.raises(ValueError, match="either user or user_id must be provided"):

0 commit comments

Comments
 (0)