Browse Source

remove type hints

pull/13509/head
Marcelo Trylesinski 3 weeks ago
parent
commit
13bf0ffca8
  1. 2
      tests/test_tutorial/test_first_steps/test_tutorial001.py

2
tests/test_tutorial/test_first_steps/test_tutorial001.py

@ -13,7 +13,7 @@ client = TestClient(app)
("/nonexistent", 404, {"detail": "Not Found"}),
],
)
def test_get_path(path: str, expected_status: int, expected_response: dict[str, str]):
def test_get_path(path, expected_status, expected_response):
response = client.get(path)
assert response.status_code == expected_status
assert response.json() == expected_response

Loading…
Cancel
Save