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 1b8b87c commit 9f064e9Copy full SHA for 9f064e9
requirements.txt
tests/test_live_client.py
@@ -858,20 +858,9 @@ async def test_live_terminate(
858
symbols="TEST",
859
)
860
861
- records = []
862
-
863
- def callback(record: DBNRecord) -> None:
864
- nonlocal records
865
- records.append(record)
866
867
- live_client.add_callback(callback)
868
869
- live_client.start()
870
live_client.terminate()
871
872
await live_client.wait_for_close()
873
874
- assert records == []
875
assert not live_client.is_connected()
876
877
0 commit comments