summaryrefslogtreecommitdiff
path: root/tests/frontend/buildtrack.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/buildtrack.py')
-rw-r--r--tests/frontend/buildtrack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/buildtrack.py b/tests/frontend/buildtrack.py
index 2d8d0e383..5a3781dc6 100644
--- a/tests/frontend/buildtrack.py
+++ b/tests/frontend/buildtrack.py
@@ -303,11 +303,11 @@ def test_build_track_track_first(cli, datafiles, tmpdir, strict):
# Assert that 1.bst successfully tracks before 0.bst builds
track_messages = re.finditer(r'\[track:1.bst\s*]', result.stderr)
- build_0 = re.search(r'\[build:0.bst\s*] START', result.stderr).start()
+ build_0 = re.search(r'\[\s*build:0.bst\s*] START', result.stderr).start()
assert all(track_message.start() < build_0 for track_message in track_messages)
# Assert that 2.bst is *only* rebuilt if we are in strict mode
- build_2 = re.search(r'\[build:2.bst\s*] START', result.stderr)
+ build_2 = re.search(r'\[\s*build:2.bst\s*] START', result.stderr)
if strict == '--strict':
assert build_2 is not None
else: