From 7d22271f5284709f73593ab9c89dfb8b9e888e95 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 10 Oct 2014 10:58:26 -0400 Subject: It's skipIf, not skipif --- test_six.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test_six.py') diff --git a/test_six.py b/test_six.py index 1940b5c..4163520 100644 --- a/test_six.py +++ b/test_six.py @@ -389,8 +389,8 @@ def test_dictionary_iterators(monkeypatch): monkeypatch.undo() -@py.test.mark.skipIf(sys.version_info[:2] < (2, 7), - "view methods on dictionaries only available on 2.7+") +@py.test.mark.skipif(sys.version_info[:2] < (2, 7), + reason="view methods on dictionaries only available on 2.7+") def test_dictionary_views(): def stock_method_name(viewwhat): """Given a method suffix like "keys" or "values", return the name -- cgit v1.2.1