From 852e1b831e72b9e161e8b52182df9eb25f89ff51 Mon Sep 17 00:00:00 2001 From: StephanDeHoop Date: Thu, 19 Dec 2024 08:47:09 +0100 Subject: [PATCH] Fix tests --- tests/everest/test_config_validation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/everest/test_config_validation.py b/tests/everest/test_config_validation.py index 2acb73af8b7..94e056c205b 100644 --- a/tests/everest/test_config_validation.py +++ b/tests/everest/test_config_validation.py @@ -891,7 +891,7 @@ def test_that_missing_required_fields_cause_error(): # Expect missing error for: # controls, objective_functions, config_path - assert len(error_dicts) == 3 + assert len(error_dicts) == 4 config_with_defaults = EverestConfig.with_defaults() config_args = {} @@ -899,6 +899,7 @@ def test_that_missing_required_fields_cause_error(): "controls", "objective_functions", "config_path", + "model", ] for key in required_argnames: