Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cstefc committed Mar 10, 2024
1 parent efe61b0 commit 9df52f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/tests/teachers_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def setUp(self) -> None:
def test_create_teacher_bad_request(self) -> None:
response = self.app.post("/teachers", data={})
assert response.status_code == HTTPStatus.BAD_REQUEST
assert "error" in response.text
assert "error" in json.loads(response.text)

def test_create_teacher_success(self) -> None:
teacher_data = {"name": "Bart De Bruyn"}
Expand Down

0 comments on commit 9df52f0

Please sign in to comment.