From a918b2d76c165f62c19895465b6ec443d7ada9fd Mon Sep 17 00:00:00 2001 From: Hoyt Koepke Date: Tue, 29 Sep 2020 16:20:30 -0600 Subject: [PATCH] Fixed typo in skipif. (#3334) Co-authored-by: Hoyt Koepke --- src/python/turicreate/test/test_sframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/turicreate/test/test_sframe.py b/src/python/turicreate/test/test_sframe.py index 9b3633e4c3..80ce332e02 100644 --- a/src/python/turicreate/test/test_sframe.py +++ b/src/python/turicreate/test/test_sframe.py @@ -643,7 +643,7 @@ def test_save_to_csv(self): f.close() os.unlink(f.name) - @pytest.mark.skipif(version_info[0] != 3, "Not a supported feature in python 2.7") + @pytest.mark.skipif(version_info[0] != 3, reason="Not a supported feature in python 2.7") def test_pickling(self): import pickle