Skip to content

Commit

Permalink
Direct Debit test start date changed from 12 to 13 days in future. Mu…
Browse files Browse the repository at this point in the history
…st be greater than 12.
  • Loading branch information
ruscoe committed Oct 22, 2014
1 parent eaa58d5 commit 4b4872f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/CustomerLinkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ public function testCustomerLinkdirectDebitCreateACHEFTCustomerCode() {
// Test only valid for UK clients.
$iats = new CustomerLink(self::$agentCode, self::$password, 'UK');

// Begin date must be at least 12 days from current date.
$beginTime = mktime(0, 0, 0, date('n'), date('j') + 12, date('Y'));
// Begin date must be more than 12 days from current date.
$beginTime = mktime(0, 0, 0, date('n'), date('j') + 13, date('Y'));
$endTime = mktime(0, 0, 0, date('n'), date('j'), date('Y') + 10);

// Create and populate the request object.
Expand Down

0 comments on commit 4b4872f

Please sign in to comment.