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