Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimbuddy committed Nov 1, 2023
1 parent cb1237b commit ff281d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/models/test_mappedoperator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1305,8 +1305,8 @@ def file_transforms(filename):
states = self.get_states(dr)
expected = {
"file_transforms.my_setup": {0: "success", 1: "failed", 2: "skipped"},
"file_transforms.my_work": {0: "success", 1: "upstream_failed", 2: "skipped"},
"file_transforms.my_teardown": {0: "success", 1: "upstream_failed", 2: "skipped"},
"file_transforms.my_work": {2: "upstream_failed", 1: "upstream_failed", 0: "upstream_failed"},
"file_transforms.my_teardown": {2: "success", 1: "success", 0: "success"},
}

assert states == expected
Expand Down

0 comments on commit ff281d0

Please sign in to comment.