We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5afa76d commit 7e52dc2Copy full SHA for 7e52dc2
1 file changed
tests/test_compute.py
@@ -196,9 +196,9 @@ def check_file(path, suffix=""):
196
content = f.read()
197
reg = re.compile(self.logPrefix + "TestNodeD_1" + suffix)
198
assert len(reg.findall(content)) == 1
199
- check_file(preprocessLog, " \(preprocess\)")
+ check_file(preprocessLog, r" \(preprocess\)")
200
check_file(chunkLog, "")
201
- check_file(postprocessLog, " \(postprocess\)")
+ check_file(postprocessLog, r" \(postprocess\)")
202
203
204
class TestLockUpdates:
0 commit comments