Skip to content

Commit 7e52dc2

Browse files
committed
[CICD] Invalid escape sequence on windows CI
1 parent 5afa76d commit 7e52dc2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_compute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ def check_file(path, suffix=""):
196196
content = f.read()
197197
reg = re.compile(self.logPrefix + "TestNodeD_1" + suffix)
198198
assert len(reg.findall(content)) == 1
199-
check_file(preprocessLog, " \(preprocess\)")
199+
check_file(preprocessLog, r" \(preprocess\)")
200200
check_file(chunkLog, "")
201-
check_file(postprocessLog, " \(postprocess\)")
201+
check_file(postprocessLog, r" \(postprocess\)")
202202

203203

204204
class TestLockUpdates:

0 commit comments

Comments
 (0)