Skip to content

Commit

Permalink
🐛 when you fix it use the right damned name
Browse files Browse the repository at this point in the history
  • Loading branch information
liamhuber committed Oct 30, 2023
1 parent 7e20641 commit 6189e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ def test_node_packages(self):
wf.register("demo", "static.demo_nodes")

# Test invocation
wf.create.demo.OptionalAdd(label="by_add")
wf.create.demo.OptionallyAdd(label="by_add")
# Test invocation with attribute assignment
wf.by_assignment = wf.create.demo.OptionalAdd()
wf.by_assignment = wf.create.demo.OptionallyAdd()

self.assertSetEqual(
set(wf.nodes.keys()),
Expand Down

0 comments on commit 6189e02

Please sign in to comment.