From 64347da06fb96d7daf694b953d218b2ffa6becb4 Mon Sep 17 00:00:00 2001 From: SeSo Date: Tue, 24 Dec 2024 13:19:24 -0800 Subject: [PATCH] chore: make pre-commit happy --- bc_obps/common/tests/endpoints/test_openapi_docs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bc_obps/common/tests/endpoints/test_openapi_docs.py b/bc_obps/common/tests/endpoints/test_openapi_docs.py index c0f9cfe67e..f64a366b73 100644 --- a/bc_obps/common/tests/endpoints/test_openapi_docs.py +++ b/bc_obps/common/tests/endpoints/test_openapi_docs.py @@ -6,7 +6,8 @@ class TestOpenAPIDocs(TestCase): """ Tests that the OpenAPI docs are accessible. """ + def test_openapi_docs_are_accessible(self): client = Client() response = client.get(custom_reverse_lazy('openapi-json')) - self.assertEqual(response.status_code, 200) \ No newline at end of file + self.assertEqual(response.status_code, 200)