From b0640449b81f47c1d70afe634ca92c6c35caf7d8 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Thu, 21 Mar 2024 09:16:45 +0800 Subject: [PATCH] Fix --- tests/test_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_client.py b/tests/test_client.py index e5e42047..f379b51a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -254,15 +254,15 @@ def test_get_event_waveform(client): def test_get_station_list(client): stations = client.get_station_list("0101") - assert type(stations) == list + assert isinstance(stations, list) assert len(stations) >= 700 stations = client.get_station_list("0120") - assert type(stations) == list + assert isinstance(stations, list) assert len(stations) >= 120 stations = client.get_station_list("0131") - assert type(stations) == list + assert isinstance(stations, list) assert len(stations) >= 250