Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Nov 10, 2024
1 parent e0b345f commit 2cdf4a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_processing_transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,10 @@ def nested_pipeline_transformation():
)


def test_nested_pipeline_transformation_from_dict(nested_pipeline_transformation):
def test_nested_pipeline_transformation_from_dict(nested_pipeline_transformation, monkeypatch):
monkeypatch.setitem(transformations, "append", TransformationAppend)
monkeypatch.setitem(rule_conditions, "true", RuleConditionTrue)
monkeypatch.setitem(rule_conditions, "false", RuleConditionFalse)
assert (
NestedProcessingTransformation.from_dict(
{
Expand Down

0 comments on commit 2cdf4a2

Please sign in to comment.