Skip to content

Commit

Permalink
Merge pull request #18036 from eileenmcnaughton/exp_test
Browse files Browse the repository at this point in the history
Fix for failing test
  • Loading branch information
eileenmcnaughton authored Aug 2, 2020
2 parents 9652b09 + dadbf1e commit e0a5748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/CRM/Contribute/BAO/ContributionRecurTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public function testAutoRenewalWhenOneMemberIsDeceased() {
'contact_id' => $contactId,
'membership_type_id' => $priceField['membership_type_id'],
'source' => 'Payment',
'join_date' => date('Y-m') . '-28',
'join_date' => date('Y-m', strtotime('1 month ago')) . '-28',
'start_date' => date('Y-m') . '-28',
'contribution_recur_id' => $contributionRecurId,
'status_id' => 'Pending',
Expand Down

0 comments on commit e0a5748

Please sign in to comment.