Skip to content
Snippets Groups Projects
Commit c42bd75f authored by Jacob Wahlman's avatar Jacob Wahlman :ok_hand:
Browse files

Fixed some issues w/ the test

parent e8a68a4c
No related branches found
No related tags found
1 merge request!22Resolve "Replacing Operations in SFG"
Pipeline #13424 passed
This commit is part of merge request !22. Comments created here will be created in the context of that merge request.
......@@ -170,25 +170,19 @@ class TestReplaceComponents:
def test_replace_addition_large_tree(self, large_operation_tree):
sfg = SFG(outputs=[Output(large_operation_tree)])
component_id = "add2"
component_id = "add3"
sfg = sfg.replace_component(Multiplication(name="Multi"), _id=component_id)
assert "Multi" in sfg._components_by_name.keys()
assert component_id not in sfg._components_by_id.keys()
def test_replace_no_input_component(self, operation_tree):
sfg = SFG(outputs=[Output(operation_tree)])
component_id = "c1"
_value = sfg.find_by_id(component_id).value
_const = sfg.find_by_id(component_id)
sfg = sfg.replace_component(Constant(10), _id=component_id)
assert _value != sfg.find_by_id(component_id).value
def test_replace_no_destination_component(self, operation_tree):
sfg = SFG(outputs=[Output(operation_tree)])
component_id = "add1"
sfg = sfg.replace_component(Multiplication(name="Multi"), _id=component_id)
assert "Multi" in sfg._components_by_name.keys()
sfg = sfg.replace_component(Constant(1), _id=component_id)
assert _const is not sfg.find_by_id(component_id)
def test_no_match_on_replace(self, large_operation_tree):
sfg = SFG(outputs=[Output(large_operation_tree)])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment