Skip to content

Commit

Permalink
[NFC] Fix AuthorizeNet Test failure due to credit card being expired
Browse files Browse the repository at this point in the history
  • Loading branch information
seamuslee001 committed Nov 1, 2019
1 parent 8f8e34e commit e66f8ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/phpunit/CRM/Core/Payment/AuthorizeNetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ public function testCreateSingleNowDated() {
'billing_state_province_id-5' => 1012,
'billing_postal_code-5' => 5010,
'billing_country_id-5' => 1228,
'credit_card_number' => '4007000000027',
'credit_card_number' => '4444333322221111',
'cvv2' => 123,
'credit_card_exp_date' => [
'M' => 10,
'Y' => 2019,
'M' => 9,
'Y' => 2025,
],
'credit_card_type' => 'Visa',
'is_recur' => 1,
Expand All @@ -126,8 +126,8 @@ public function testCreateSingleNowDated() {
'state_province-5' => 'IL',
'billing_country-5' => 'US',
'country-5' => 'US',
'year' => 2019,
'month' => 10,
'year' => 2025,
'month' => 9,
'ip_address' => '127.0.0.1',
'amount' => 7,
'amount_level' => 0,
Expand Down

0 comments on commit e66f8ad

Please sign in to comment.