From a32bee3c8c050a401d0bce5d8b556a7c7bdff060 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 20 Sep 2025 22:11:20 +0300 Subject: [PATCH] fix test based on chnaged data --- core/TESTS/test_caves.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/TESTS/test_caves.py b/core/TESTS/test_caves.py index ae79a6f..b14254c 100644 --- a/core/TESTS/test_caves.py +++ b/core/TESTS/test_caves.py @@ -229,7 +229,7 @@ class FixturePageTests(TestCase): response = self.client.get("/caves") self.assertEqual(response.status_code, HTTPStatus.OK) content = response.content.decode() - ph = r"284 Seetrichter" + ph = r"284 Seetrichter (Lake bottom)" phmatch = re.search(ph, content) # with open('_cave_fix_caves.html', 'w') as f: # f.write(content)