From 0d21056ff937ea6ae7e994e2d58ae512084186bf Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Mon, 27 Apr 2020 12:42:56 +0200 Subject: [PATCH] [test.test_cli] Fix test after engine changes --- bob/ip/binseg/test/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/ip/binseg/test/test_cli.py b/bob/ip/binseg/test/test_cli.py index d0d25c11..1725ec44 100644 --- a/bob/ip/binseg/test/test_cli.py +++ b/bob/ip/binseg/test/test_cli.py @@ -109,7 +109,7 @@ def _check_experiment_stare(overlay): assert os.path.exists(os.path.join(train_folder, "last_checkpoint")) assert os.path.exists(os.path.join(train_folder, "constants.csv")) assert os.path.exists(os.path.join(train_folder, "trainlog.csv")) - assert os.path.exists(os.path.join(predict_folder, "model_summary.txt")) + assert os.path.exists(os.path.join(train_folder, "model_summary.txt")) # check predictions are there predict_folder = os.path.join(output_folder, "predictions") -- GitLab