Skip to content

Commit 6b6173c

Browse files
committed
Fix typo in test framework
Signed-off-by: Mats Wichmann <mats@linux.com>
1 parent 81a39dc commit 6b6173c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/framework/TestCommonTests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def test_file_missing(self) -> None:
335335
stdout = run_env.stdout()
336336
assert stdout == "", stdout
337337
stderr = run_env.stderr()
338-
assert "No such file or directory:") in stderr, stderr
338+
assert "No such file or directory" in stderr, stderr
339339

340340
def test_failure(self) -> None:
341341
"""Test must_contain(): failure"""

0 commit comments

Comments
 (0)