diff --git a/tests/test_api.py b/tests/test_api.py index ea06f6c..6961ec0 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -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): @@ -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): @@ -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):