Skip to content

Commit 69193b2

Browse files
committed
Updated unit test for Fetch Application Fee.
1 parent c8959b6 commit 69193b2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/Message/FetchApplicationFeeTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public function testSendSuccess()
2525
$this->assertTrue($response->isSuccessful());
2626
$this->assertFalse($response->isRedirect());
2727
$this->assertSame('fee_1FITlv123YJsynqe3nOIfake', $response->getApplicationFeeReference());
28-
$this->assertNull($response->getCardReference());
2928
$this->assertNull($response->getMessage());
3029
}
3130

@@ -36,8 +35,7 @@ public function testSendError()
3635

3736
$this->assertFalse($response->isSuccessful());
3837
$this->assertFalse($response->isRedirect());
39-
$this->assertNull($response->getBalanceTransactionReference());
40-
$this->assertNull($response->getCardReference());
38+
$this->assertNull($response->getApplicationFeeReference());
4139
$this->assertSame('No such application fee: fee_1FITlv123YJsynqe3nOIfake', $response->getMessage());
4240
}
4341
}

0 commit comments

Comments
 (0)