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 1ba7ee2 commit d162a3cCopy full SHA for d162a3c
tests/integration/test_creditcardpayment_entity.py
@@ -57,6 +57,6 @@ def test_update(self):
57
credit_card_payment.Amount += 1
58
credit_card_payment.save(qb=self.qb_client)
59
60
- query_transfer = Transfer.get(credit_card_payment.Id, qb=self.qb_client)
+ query_credit_card_payment = CreditCardPayment.get(credit_card_payment.Id, qb=self.qb_client)
61
62
- self.assertEquals(query_transfer.Amount, credit_card_payment.Amount)
+ self.assertEquals(query_credit_card_payment.Amount, credit_card_payment.Amount)
0 commit comments