Remove unnecessary test

This commit is contained in:
ines 2017-04-23 21:21:41 +02:00
parent 012ea594d1
commit 42305bc519

View File

@ -11,9 +11,3 @@ import pytest
def test_util_ensure_path_succeeds(text):
path = ensure_path(text)
assert isinstance(path, Path)
@pytest.mark.parametrize('text', [b'hello/world', True, False, None])
def test_util_ensure_path_fails(text):
path = ensure_path(text)
assert not isinstance(path, Path)