diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-23 03:05:22 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-23 03:05:22 +0100 |
commit | 1a4be0f02e8ca2536bb754c7285c005478ad047a (patch) | |
tree | d46c92dbaee250b0ec89024bc6e629fdf5b9494d /core/TESTS/tests_caves.py | |
parent | 8f89b022c78a6d2d5e1f87cd6d0127fefde7a27f (diff) | |
download | troggle-1a4be0f02e8ca2536bb754c7285c005478ad047a.tar.gz troggle-1a4be0f02e8ca2536bb754c7285c005478ad047a.tar.bz2 troggle-1a4be0f02e8ca2536bb754c7285c005478ad047a.zip |
stop file logging from tests
Diffstat (limited to 'core/TESTS/tests_caves.py')
-rw-r--r-- | core/TESTS/tests_caves.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/TESTS/tests_caves.py b/core/TESTS/tests_caves.py index 841691c..0ff0f12 100644 --- a/core/TESTS/tests_caves.py +++ b/core/TESTS/tests_caves.py @@ -90,8 +90,8 @@ class FixturePageTests(TestCase): content = response.content.decode() phmatch = re.search(ph, content) - with open('exped-op.html', 'w') as f: - f.write(content) + # with open('exped-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") @@ -103,8 +103,8 @@ class FixturePageTests(TestCase): content = response.content.decode() phmatch = re.search(ph, content) - with open('persexped-op.html', 'w') as f: - f.write(content) + # with open('persexped-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") def test_fix_person(self): @@ -115,8 +115,8 @@ class FixturePageTests(TestCase): content = response.content.decode() phmatch = re.search(ph, content) - with open('person-op.html', 'w') as f: - f.write(content) + # with open('person-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") @@ -138,8 +138,8 @@ class FixturePageTests(TestCase): content = response.content.decode() phmatch = re.search(ph, content) - with open('cave-op.html', 'w') as f: - f.write(content) + # with open('cave-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") def test_fix_cave_bare_url115(self): |