From 81b5198cd127f47e888ae6ef3760a18793f9819e Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 16 Sep 2023 19:53:39 +0300 Subject: fix code so tests work --- core/TESTS/tests.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/TESTS/tests.py') diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index 00a5021..4d3286f 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -173,6 +173,8 @@ class PageTests(TestCase): self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'") def test_caves_page(self): + # Throws up lots of cave error msgs because it is looking at something which is not loaded for the tests + # but the test itself does not fail response = self.client.get("/caves") self.assertEqual(response.status_code, HTTPStatus.OK) content = response.content.decode() -- cgit v1.2.3