From eb225456d7b5dac8c90fb5394f7262428e9bbd16 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 4 Feb 2011 22:51:05 +0100 Subject: [PATCH] laxer test for also passing it with pypy --- 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 a82f42f4a..358f7a1d0 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -350,7 +350,7 @@ class TestInvocationVariants: result = testdir.runpytest("--pyargs", "tpkg.test_hello") assert result.ret != 0 result.stderr.fnmatch_lines([ - "*file*not*found*test_hello.py", + "*file*not*found*test_hello", ]) def test_cmdline_python_package_not_exists(self, testdir):