From 2611358432eff08629e9c739c546f85eb397d56c Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 17 Nov 2023 11:16:03 -0300 Subject: [PATCH] [Tests][Fixed] Message for no rotations Now it says "and/or offsets" --- 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 30403804..4f7cef72 100644 --- a/tests/test_plot/test_yaml_errors.py +++ b/tests/test_plot/test_yaml_errors.py @@ -694,7 +694,7 @@ def test_error_rot_not_number(test_dir): def test_error_rot_no_rotations(test_dir): ctx = context.TestContext(test_dir, 'bom', 'error_rot_no_rotations') ctx.run(EXIT_BAD_CONFIG) - assert ctx.search_err("No rotations provided") + assert ctx.search_err("No rotations and/or offsets provided") ctx.clean_up()