Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Fixed typo in skipif. (#3334)
Browse files Browse the repository at this point in the history
Co-authored-by: Hoyt Koepke <[email protected]>
  • Loading branch information
Hoyt Koepke and Hoyt Koepke authored Sep 29, 2020
1 parent c53dd6d commit a918b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/turicreate/test/test_sframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a918b2d

Please sign in to comment.