diff options
author | Philip Sargent @ okchai <philip.sargent@gmail.com> | 2025-06-18 07:58:10 +0100 |
---|---|---|
committer | Philip Sargent @ okchai <philip.sargent@gmail.com> | 2025-06-18 07:58:10 +0100 |
commit | 6e3279e5852a664b70ad331e8595ed9c6cdd4176 (patch) | |
tree | 256a31fcd94867fca7dcd9d7bcfc26ddfabbd762 | |
parent | fdc656dbbac25ba7d7f6929cf760b9b7e761a1a1 (diff) | |
download | troggle-6e3279e5852a664b70ad331e8595ed9c6cdd4176.tar.gz troggle-6e3279e5852a664b70ad331e8595ed9c6cdd4176.tar.bz2 troggle-6e3279e5852a664b70ad331e8595ed9c6cdd4176.zip |
made test for cavern more robust against legs v shots
-rw-r--r-- | core/TESTS/test_imports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/TESTS/test_imports.py b/core/TESTS/test_imports.py index f288951..ad64564 100644 --- a/core/TESTS/test_imports.py +++ b/core/TESTS/test_imports.py @@ -275,7 +275,7 @@ class SubprocessTest(TestCase): self.assertTrue(sp.returncode == 0, f"{cwd} - survex is unhappy") content = sp.stdout - ph = r"Total length of survey legs" + ph = r"Total plan length of survey" phmatch = re.search(ph, content) msg = f'{cwd} - Failed to find expected survex output: "{ph}"' self.assertIsNotNone(phmatch, msg) |