diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_grobid2json.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_grobid2json.py b/tests/test_grobid2json.py index e970868..7ee423c 100644 --- a/tests/test_grobid2json.py +++ b/tests/test_grobid2json.py @@ -12,9 +12,6 @@ def test_small_xml(): with open('tests/files/small.json', 'r') as f: json_form = json.loads(f.read()) - parsed = teixml2json(tei_xml) - for i in range(len(parsed['citations'])): - assert parsed['citations'][i] == json_form['citations'][i] assert teixml2json(tei_xml) == json_form def test_invalid_xml(): |