From eaec527a608dd06a9a4e2f84a4c5d44c8ff2a838 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 21 Sep 2011 06:21:48 +0200 Subject: [PATCH] relax error string matching --- testing/acceptance_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py index 716d3c3ce..dcdf5b93e 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -411,7 +411,7 @@ class TestInvocationVariants: result = testdir.runpytest("--pyargs", "tpkg.test_hello") assert result.ret != 0 result.stderr.fnmatch_lines([ - "*file*not*found*test_hello*", + "*not*found*test_hello*", ]) def test_cmdline_python_package_not_exists(self, testdir):