From 4406a0299eaa0d7c8e07ae231a180f3fee0ebb60 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Sat, 9 May 2026 04:12:19 +0200 Subject: [PATCH] =?UTF-8?q?update=20CLI=20test=20for=20binarization?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - update expected log messages --- tests/cli_tests/test_binarization.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cli_tests/test_binarization.py b/tests/cli_tests/test_binarization.py index 1287ffa..aee74a4 100644 --- a/tests/cli_tests/test_binarization.py +++ b/tests/cli_tests/test_binarization.py @@ -22,7 +22,7 @@ def test_run_eynollah_binarization_filename( '-o', str(outfile), ] + options, [ - 'Loaded model' + f"output filename: '{str(outfile)}'" ] ) assert outfile.exists() @@ -46,8 +46,8 @@ def test_run_eynollah_binarization_directory( '-o', str(outdir), ], [ - f'Binarizing [ 1/2] {image_resources[0].name}', - f'Binarizing [ 2/2] {image_resources[1].name}', + str(image_resources[0]), + str(image_resources[1]), ] ) assert len(list(outdir.iterdir())) == 2