aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/test_grobid2json.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/test_grobid2json.py')
-rw-r--r--python/tests/test_grobid2json.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/test_grobid2json.py b/python/tests/test_grobid2json.py
index b8999b1..7637871 100644
--- a/python/tests/test_grobid2json.py
+++ b/python/tests/test_grobid2json.py
@@ -1,4 +1,3 @@
-
import json
import xml
@@ -8,14 +7,15 @@ from grobid2json import *
def test_small_xml():
-
+
with open('tests/files/small.xml', 'r') as f:
tei_xml = f.read()
with open('tests/files/small.json', 'r') as f:
- json_form = json.loads(f.read())
+ json_form = json.loads(f.read())
assert teixml2json(tei_xml) == json_form
+
def test_invalid_xml():
with pytest.raises(xml.etree.ElementTree.ParseError):