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

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Oct 4, 2017
1 parent 7253822 commit 425eabc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/schemes/test_local.py
Expand Up @@ -19,9 +19,9 @@ def test_stream_file():


@pytest.mark.skipif(sys.version_info < (3, 4), reason='not supported')
def test_stream_pathlib_path():
def test_stream_file_pathlib_path():
pathlib = import_module('pathlib')
with Stream(Path('data/table.csv')) as stream:
with Stream(pathlib.Path('data/table.csv')) as stream:
assert stream.read() == [['id', 'name'], ['1', 'english'], ['2', '中国人']]


Expand Down

0 comments on commit 425eabc

Please sign in to comment.