diff options
-rw-r--r-- | tests/test_text_parser.py | 3 | ||||
-rw-r--r-- | tests/test_utils.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_text_parser.py b/tests/test_text_parser.py index 9573915..c49d0c9 100644 --- a/tests/test_text_parser.py +++ b/tests/test_text_parser.py @@ -1,4 +1,5 @@ -from epy import CharPos, TextMark, TextSpan, HTMLtoLines +from epy_reader.models import CharPos, TextMark, TextSpan +from epy_reader.parser import HTMLtoLines def test_text_mark_validation_check(): diff --git a/tests/test_utils.py b/tests/test_utils.py index 4274adf..e0f0419 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,6 +1,6 @@ from collections import namedtuple -from epy import resolve_path +from epy_reader.lib import resolve_path def test_resolve_path(): |