Skip to content

Commit

Permalink
Fix tests for action
Browse files Browse the repository at this point in the history
  • Loading branch information
Krukov committed Dec 1, 2024
1 parent 286a2b2 commit 620b6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rate_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async def func(k=None):
assert await func() == 1
action.assert_not_called()

assert await func(k="test") == 1
assert await func(k="test") == action(k="test")
action.assert_called_with(k="test")


Expand Down

0 comments on commit 620b6c4

Please sign in to comment.