Skip to content

Commit

Permalink
Correct test which referred to Credit card instead of Credit Card cau…
Browse files Browse the repository at this point in the history
…sing a fail with new property bag which is stricter
  • Loading branch information
Rich Lott / Artful Robot committed Nov 7, 2019
1 parent 43074c6 commit ca3f7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Contribute/Form/ContributionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ public function testPartialPaymentWithCreditCard() {
'total_amount' => 40,
'currency' => 'USD',
'financial_type_id' => 1,
'payment_instrument_id' => array_search('Credit card', $this->paymentInstruments),
'payment_instrument_id' => array_search('Credit Card', $this->paymentInstruments),
'payment_processor_id' => $this->paymentProcessorID,
'credit_card_exp_date' => ['M' => 5, 'Y' => 2025],
'credit_card_number' => '411111111111111',
Expand Down

0 comments on commit ca3f7dc

Please sign in to comment.