diff options
Diffstat (limited to 'test/test_theming.py')
-rw-r--r-- | test/test_theming.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_theming.py b/test/test_theming.py index 40d1ab42..08856571 100644 --- a/test/test_theming.py +++ b/test/test_theming.py @@ -2,11 +2,9 @@ Test the functions in the `theming` module """ -import sys import pytest -sys.path.append('poezio') -from theming import dump_tuple, read_tuple +from poezio.theming import dump_tuple, read_tuple def test_read_tuple(): assert read_tuple('1,-1,u') == ((1, -1), 'u') |