From f10cdde72d3afe4daf609aa0c30238663e60302d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20T=C5=AFma?= Date: Tue, 5 May 2026 19:02:34 +0200 Subject: [PATCH] Apply suggested fix to tests_integrity/test_simple.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests_integrity/test_simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_integrity/test_simple.py b/tests_integrity/test_simple.py index 51c9373..22a407d 100644 --- a/tests_integrity/test_simple.py +++ b/tests_integrity/test_simple.py @@ -238,7 +238,7 @@ def test_not_found(self, url): check_url(url+"/no-page", status_code=404) def test_method_not_allowed(self, url): - """Tests the /internal-server-error endpoint with an disallowed + """Tests the /internal-server-error endpoint with a disallowed method.""" check_url(url+"/internal-server-error", method="PUT", status_code=405)