Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
w3stling committed Jan 16, 2025
1 parent c88670e commit 7ebdc5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_api_version(client):
def test_markets_all(client):
response = client.get("/api/v1/markets")
assert response.status_code == 200
assert len(response.json()) == 56
assert len(response.json()) == 57


def test_markets_one_mic(client):
Expand All @@ -33,7 +33,7 @@ def test_status_all(client):
response = client.get("/api/v1/markets/status")
assert response.status_code == 200
print(response.json())
assert len(response.json()) == 56
assert len(response.json()) == 57


def test_status_one_mic(client):
Expand All @@ -56,7 +56,7 @@ def test_status_bad_mic(client):
def test_hours_all(client):
response = client.get("/api/v1/markets/hours?start=2024-07-03&end=2024-07-03")
assert response.status_code == 200
assert len(response.json()) == 56
assert len(response.json()) == 57


def test_hours_one_mic(client):
Expand Down

0 comments on commit 7ebdc5b

Please sign in to comment.