diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-03-13 23:48:22 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-03-13 23:48:22 +0000 |
commit | fac748d2e24e5765c43350a247f2c92856c96b2d (patch) | |
tree | 9a9a180e74c9900e612fac47773867e48d4c4395 /core | |
parent | ad1283662d64c599b0431c4112d958dce7ed68fb (diff) | |
download | troggle-fac748d2e24e5765c43350a247f2c92856c96b2d.tar.gz troggle-fac748d2e24e5765c43350a247f2c92856c96b2d.tar.bz2 troggle-fac748d2e24e5765c43350a247f2c92856c96b2d.zip |
Better table titles
Diffstat (limited to 'core')
-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 98c85f4..4af5fa0 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -407,7 +407,7 @@ class PageTests(TestCase): self.assertEqual(response.status_code, 200) content = response.content.decode() for ph in [ r'All Tunnel and Therion files', - r'<th>Scans folder</th><th>Scan files</th><th>Frames</th></tr>']: + r'<th>Wallets</th><th>Scan files in the wallets</th><th>Frames</th></tr>']: phmatch = re.search(ph, content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") @@ -417,7 +417,7 @@ class PageTests(TestCase): self.assertEqual(response.status_code, 200) content = response.content.decode() for ph in [ r'All Tunnel and Therion files', - r'<th>Scans folder</th><th>Scan files</th><th>Frames</th></tr>']: + r'<th>Wallets</th><th>Scan files in the wallets</th><th>Frames</th></tr>']: phmatch = re.search(ph, content) self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'") |