Skip to content

Commit

Permalink
Make sure skip is passed a string (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Sep 16, 2019
1 parent 456d2c3 commit bafb458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def test_iter_lines_timeout(self):
print("err:", err)
except NotImplementedError:
try:
pytest.skip(sys.exc_info()[1])
pytest.skip(str(sys.exc_info()[1]))
except AttributeError:
return
except ProcessTimedOut:
Expand Down

0 comments on commit bafb458

Please sign in to comment.