Skip to content

Commit

Permalink
Merge pull request #51 from maykinmedia/fix-broken-automerge
Browse files Browse the repository at this point in the history
Fix broken yaml source test
  • Loading branch information
stevenbal authored Jan 21, 2025
2 parents 1b4fa5e + 94660fe commit 9e1afdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def test_yaml_source_can_be_string_or_path_like(
step_execute_mock, expected_step_config, path_factory, test_step_yaml_path
):
result = execute_single_step(
TestStep, yaml_source=path_factory(test_step_yaml_path)
ConfigStep, yaml_source=path_factory(test_step_yaml_path)
)

assert result == StepExecutionResult(
Expand All @@ -223,5 +223,5 @@ def test_yaml_source_can_be_string_or_path_like(
run_exception=None,
config_model=expected_step_config,
)
assert type(result.step) is TestStep
assert type(result.step) is ConfigStep
step_execute_mock.assert_called_once_with(expected_step_config)

0 comments on commit 9e1afdd

Please sign in to comment.