From 680c2a26612a240a0f816651e4a93d95d1423118 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Mon, 28 Oct 2019 15:05:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20dinglehopper:=20Fix=20test=5Focr?= =?UTF-8?q?d=5Fcli=20for=20Python=203.5,=20again,=20and=20again?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qurator/dinglehopper/tests/test_integ_ocrd_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qurator/dinglehopper/tests/test_integ_ocrd_cli.py b/qurator/dinglehopper/tests/test_integ_ocrd_cli.py index 9123c1b..34b2380 100644 --- a/qurator/dinglehopper/tests/test_integ_ocrd_cli.py +++ b/qurator/dinglehopper/tests/test_integ_ocrd_cli.py @@ -45,5 +45,5 @@ def test_ocrd_cli(tmp_path): '-O', 'OCR-D-OCR-CALAMARI-EVAL' ]) assert result.exit_code == 0 - result_json = list((Path(test_workspace_dir) / 'OCR-D-OCR-CALAMARI-EVAL').glob('*.json')) + result_json = list((test_workspace_dir / 'OCR-D-OCR-CALAMARI-EVAL').glob('*.json')) assert json.load(open(str(result_json[0])))['cer'] < 0.03