Skip to content

Commit

Permalink
chore: Refactor. #1484
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci committed Sep 19, 2023
1 parent 9e48a91 commit 93bc110
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions py/tests/test_routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,4 @@ async def test_arg_pattern_matching_uuid(self):
arg = f'page/orders/{uuid_str}'
q = mock_q(args={arg: True, '__wave_submission_name__': arg})
await run_on(q)
uuid = UUID(uuid_str)
pattern_arg_handlers['page/orders/{order_id:uuid}'].assert_called_once_with(q, order_id=uuid)
pattern_arg_handlers['page/orders/{order_id:uuid}'].assert_called_once_with(q, order_id=UUID(uuid_str))

0 comments on commit 93bc110

Please sign in to comment.