From 0abb779be2cd6fc913f3c57d891b040b40baf6c3 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sat, 16 May 2020 19:52:17 -0700 Subject: initial progress on work pipeline --- tests/test_djvu_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') 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] -- cgit v1.2.3