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.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.py')
-rw-r--r-- | core/TESTS/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index d8143b5..1cf9f60 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -170,8 +170,8 @@ class PageTests(TestCase): ph = r'All Survey scans folders ' content = response.content.decode() phmatch = re.search(ph, content) - with open('ss-op.html', 'w') as f: - f.write(content) + # with open('ss-op.html', 'w') as f: + # f.write(content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") |