From 59b792058d02161e36ae8d24b18b7a1cc9dc147c Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 13 Oct 2015 14:19:12 +1100 Subject: [PATCH] * Fix test_parse_navigate looking for test file in wrong place --- tests/parser/test_parse_navigate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/parser/test_parse_navigate.py b/tests/parser/test_parse_navigate.py index 1771dbeba..eac57a5cd 100644 --- a/tests/parser/test_parse_navigate.py +++ b/tests/parser/test_parse_navigate.py @@ -7,7 +7,8 @@ import pytest @pytest.fixture def sun_text(): - with io.open(path.join(path.dirname(__file__), 'sun.txt'), 'r', encoding='utf8') as file_: + with io.open(path.join(path.dirname(__file__), '..', 'sun.txt'), 'r', + encoding='utf8') as file_: text = file_.read() return text