Skip to content

Commit

Permalink
fix: update transformer test to match new 'cascade' logic
Browse files Browse the repository at this point in the history
  • Loading branch information
danielolsen committed Feb 25, 2022
1 parent b7d62bb commit 1cd3e14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def test_create_transformers():
dtype="float",
)
expected_transformers = pd.DataFrame(
{"from_bus_id": [0, 2, 4, 5], "to_bus_id": [1, 3, 6, 6]}
{"from_bus_id": [0, 2, 4, 5], "to_bus_id": [1, 3, 5, 6]}
)
transformers = create_transformers(bus)
assert_frame_equal(transformers, expected_transformers)
Expand Down

0 comments on commit 1cd3e14

Please sign in to comment.