Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 21, 2024
1 parent 04693df commit b064044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit b064044

Please sign in to comment.