From 336d7900c587caa35c0bb9067bf6820fe66a89ea Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 1 Oct 2016 13:38:41 -0300 Subject: [PATCH] Fix test about pytest.skip message being used at global level Fix #1959 --- testing/test_skipping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_skipping.py b/testing/test_skipping.py index 12b18ca33..2e7868d3a 100644 --- a/testing/test_skipping.py +++ b/testing/test_skipping.py @@ -967,5 +967,5 @@ def test_module_level_skip_error(testdir): """) result = testdir.runpytest() result.stdout.fnmatch_lines( - "*Using @pytest.skip outside of a test * is not allowed*" + "*Using pytest.skip outside of a test is not allowed*" )