diff --git a/accounts/tests/delete.py b/accounts/tests/delete.py index 950ac04..f7cfc47 100644 --- a/accounts/tests/delete.py +++ b/accounts/tests/delete.py @@ -21,7 +21,7 @@ class DeleteTest(TestCase): def test_normal_delete(self): - response: HttpResponse = self.client.post(self.url) + response: HttpResponse = self.client.delete(self.url) response_text: str = response.content.decode("utf-8") self.assertEqual(response_text, '"user deleted"')