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 6119a69 commit 04826dfCopy full SHA for 04826df
tests/model/generated/endpoint/test_payment.py
@@ -64,7 +64,10 @@ def test_payment_chat(self):
64
65
chat_id = endpoint.PaymentChat.create(payment_id).value
66
67
- endpoint.ChatMessageText.create(chat_id, self._PAYMENT_CHAT_TEXT_MESSAGE)
+ endpoint.ChatMessageText.create(
68
+ chat_id,
69
+ self._PAYMENT_CHAT_TEXT_MESSAGE
70
+ )
71
72
def test_payment_batch(self):
73
response_create: endpoint.BunqResponseInt =\
@@ -74,7 +77,7 @@ def test_payment_batch(self):
74
77
75
78
self.assertIsNotNone(response_create)
76
79
- response_get: endpoint.BunqResponsePaymentBatch =\
80
+ response_get: endpoint.BunqResponsePaymentBatch = \
81
endpoint.PaymentBatch.get(response_create.value)
82
83
self.assertIsNotNone(response_get)
0 commit comments