From 00d0c74657ca912f109d851961042e9e8ada9b2c Mon Sep 17 00:00:00 2001 From: Michael Aquilina Date: Sat, 3 Oct 2015 17:01:21 +0100 Subject: [PATCH] Update reason in test to prevent confusing with test_no_reason --- testing/test_skipping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/test_skipping.py b/testing/test_skipping.py index 4945dbc77..3a6fd5c40 100644 --- a/testing/test_skipping.py +++ b/testing/test_skipping.py @@ -455,7 +455,7 @@ class TestSkip: @pytest.mark.skip def test_foo(): pass - @pytest.mark.skip(reason="no reason") + @pytest.mark.skip(reason="nothing in particular") def test_bar(): pass def test_baz(): @@ -463,7 +463,7 @@ class TestSkip: """) result = testdir.runpytest('-rs') result.stdout.fnmatch_lines([ - "*no reason*", + "*nothing in particular*", "*1 passed*2 skipped*", ])