aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_djvu_parse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_djvu_parse.py b/tests/test_djvu_parse.py
index 66c2804..abf5a4c 100644
--- a/tests/test_djvu_parse.py
+++ b/tests/test_djvu_parse.py
@@ -1,5 +1,5 @@
-from io import StringIO
+import io
from fatcat_scholar.djvu import djvu_extract_leaf_texts
@@ -9,7 +9,7 @@ def test_djvu_extract_leaf_texts():
with open('tests/files/ERIC_ED441501_djvu.xml', 'r') as f:
blob = f.read()
- leaves = djvu_extract_leaf_texts(StringIO(blob), [3,6])
+ leaves = djvu_extract_leaf_texts(io.StringIO(blob), [3,6])
assert 3 in leaves
assert 6 in leaves
assert "2. Original cataloging tools" in leaves[3]