Skip to content

Commit

Permalink
stringify UUID in test
Browse files Browse the repository at this point in the history
  • Loading branch information
delcroip committed Oct 30, 2024
1 parent 0e35cf2 commit f19cb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contract/tests/test_mutation_create_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def test_mutation_contract_create_with_policy_holder(self):
)
).first()
input_param = {
"uuid": payment.uuid,
"uuid": str(payment.uuid),
"clientMutationId": str(uuid.uuid4()),
"receivedAmount": str(payment.expected_amount),
"expectedAmount": str(payment.expected_amount),
Expand Down

0 comments on commit f19cb03

Please sign in to comment.