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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/test_grobid2json.py b/python/tests/test_grobid2json.py
index 7637871..98888e8 100644
--- a/python/tests/test_grobid2json.py
+++ b/python/tests/test_grobid2json.py
@@ -8,9 +8,9 @@ from grobid2json import *
def test_small_xml():
- with open('tests/files/small.xml', 'r') as f:
+ with open("tests/files/small.xml", "r") as f:
tei_xml = f.read()
- with open('tests/files/small.json', 'r') as f:
+ with open("tests/files/small.json", "r") as f:
json_form = json.loads(f.read())
assert teixml2json(tei_xml) == json_form