diff options
Diffstat (limited to 'core/TESTS')
-rw-r--r-- | core/TESTS/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
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() |