We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ef7a6d commit 4b29845Copy full SHA for 4b29845
test/test_op.py
@@ -81,7 +81,7 @@ def test_operation_returns_dict():
81
result = {"a": 1}
82
83
op = operation(lambda: result, provides="a", returns_dict=True)()
84
- assert op.compute({}, ["a"]) == result
+ assert op.compute({}) == result
85
86
op = operation(lambda: 1, provides="a", returns_dict=False)()
87
0 commit comments