Move text file back to tokenizer tests directory

This commit is contained in:
Ines Montani 2017-01-12 02:10:23 +01:00
parent ffcaba9017
commit ae7edd30e7
2 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Phasellus tincidunt, augue quis porta finibus, massa sapien consectetur augue, n
@pytest.mark.parametrize('file_name', ["sun.txt"])
def test_tokenizer_handle_text_from_file(tokenizer, file_name):
loc = path.join(path.dirname(__file__), '..', file_name)
loc = path.join(path.dirname(__file__), file_name)
text = utf8open(loc).read()
assert len(text) != 0
tokens = tokenizer(text)