Skip to content

Commit

Permalink
fix from review
Browse files Browse the repository at this point in the history
  • Loading branch information
berland committed Dec 10, 2024
1 parent be2257e commit 16bab37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ert/unit_tests/config/test_forward_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ def __init__(self):
super().__init__(name="FMWithAssertionError", command=["the_executable.sh"])

def validate_pre_experiment(
self, fm_step_json: ForwardModelStepJSON, _: dict
self, fm_step_json: ForwardModelStepJSON, _: Dict[str, str]
) -> None:
raise AssertionError("I should be a warning")

Expand All @@ -1049,7 +1049,7 @@ def __init__(self):
)

def validate_pre_experiment(
self, fm_step_json: ForwardModelStepJSON, _: dict
self, fm_step_json: ForwardModelStepJSON, _: Dict[str, str]
) -> None:
raise ForwardModelStepValidationError("I should not be a warning")

Expand Down

0 comments on commit 16bab37

Please sign in to comment.