Skip to content

Commit 4b29845

Browse files
committed
reb ret_dicts
1 parent 3ef7a6d commit 4b29845

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_op.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def test_operation_returns_dict():
8181
result = {"a": 1}
8282

8383
op = operation(lambda: result, provides="a", returns_dict=True)()
84-
assert op.compute({}, ["a"]) == result
84+
assert op.compute({}) == result
8585

8686
op = operation(lambda: 1, provides="a", returns_dict=False)()
87-
assert op.compute({}, ["a"]) == result
87+
assert op.compute({}) == result

0 commit comments

Comments
 (0)