Skip to content

Commit

Permalink
Remove capture message
Browse files Browse the repository at this point in the history
  • Loading branch information
delatbabel committed Aug 25, 2016
1 parent dcf53f4 commit 9be8e71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SoapGatewayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public function testCaptureSuccess()
$result = new \stdClass();
$result->State = 2;
$result->Status = 1;
$result->Message = 'Approved BankAuth: 826914443 CvvResult: M CVVCodeReason: CVV2 Match';
$result->Message = '';
$result->Technical = '';
$result->TransactionID = 'f0e5b9f4-ec28-4ff2-aaed-195ec71aefcc';

Expand All @@ -214,7 +214,7 @@ public function testCaptureSuccess()
$this->assertTrue($response->isSuccessful());
$this->assertFalse($response->isRedirect());
$this->assertEquals('f0e5b9f4-ec28-4ff2-aaed-195ec71aefcc', $response->getTransactionReference());
$this->assertSame('Approved BankAuth: 826914443 CvvResult: M CVVCodeReason: CVV2 Match', $response->getMessage());
$this->assertEmpty($response->getMessage());
}

public function testRefundSuccessNoAmount()
Expand Down

0 comments on commit 9be8e71

Please sign in to comment.