From 2255d22924d473c9bd1f02530e3bf4f3ce7adf2e Mon Sep 17 00:00:00 2001 From: Benjamin Thomas Schwertfeger Date: Mon, 18 Dec 2023 18:14:21 +0100 Subject: [PATCH] adjust conditions in tests --- tests/spot/test_spot_websocket_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spot/test_spot_websocket_v2.py b/tests/spot/test_spot_websocket_v2.py index fd80493f..ee792646 100644 --- a/tests/spot/test_spot_websocket_v2.py +++ b/tests/spot/test_spot_websocket_v2.py @@ -379,7 +379,7 @@ async def check_unsubscribe() -> None: asyncio_run(check_unsubscribe()) for expected in ( - '{"method": "subscribe", "req_id": 123456789, "result": {"channel": "executions", "maxratecount": 180, "snapshot": true"', # , "success": true, "time_in": ', + '{"method": "subscribe", "req_id": 123456789, "result": {"channel": "executions", "maxratecount": 180, "snapshot": true', # , "success": true, "time_in": ', '{"method": "unsubscribe", "req_id": 987654321, "result": {"channel": "executions"}, "success": true, "time_in": ', ): assert expected in caplog.text