From 94cd3857259533280cd442b0bfbda70a5b3464fb Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 4 Jan 2023 13:59:13 -0300 Subject: [PATCH] [Tests] Adapted to the new missing import file message --- tests/test_plot/test_yaml_errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plot/test_yaml_errors.py b/tests/test_plot/test_yaml_errors.py index 3d0683c6..467ac809 100644 --- a/tests/test_plot/test_yaml_errors.py +++ b/tests/test_plot/test_yaml_errors.py @@ -666,7 +666,7 @@ def test_error_import_not_str(test_dir): def test_error_import_miss_file(test_dir): ctx = context.TestContext(test_dir, PRJ, 'error_import_miss_file') ctx.run(EXIT_BAD_CONFIG) - assert ctx.search_err(r"missing import file") + assert ctx.search_err(r"issing import file") ctx.clean_up(keep_project=True)