Skip to content

Commit c6f69f3

Browse files
committed
false
1 parent 0c4e68e commit c6f69f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Message/GetPaymentInfoResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class GetPaymentInfoResponse extends AbstractResponse
1313
*/
1414
public function isSuccessful()
1515
{
16-
return true;
16+
return false;
1717
}
1818

1919
/**

tests/Message/GetPaymentInfoRequestTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function testAtmSend($results)
5050
{
5151
[$response, $options] = $results;
5252

53-
self::assertTrue($response->isSuccessful());
53+
self::assertFalse($response->isSuccessful());
5454
self::assertEquals($options['AtmNo'], $response->getData()['AtmNo']);
5555
self::assertEquals('OK', $response->getReply());
5656
}
@@ -87,7 +87,7 @@ public function testPaymentNoSend($results)
8787
{
8888
[$response, $options] = $results;
8989

90-
self::assertTrue($response->isSuccessful());
90+
self::assertFalse($response->isSuccessful());
9191
self::assertEquals($options['PaymentNo'], $response->getData()['PaymentNo']);
9292
self::assertEquals('OK', $response->getReply());
9393
}

0 commit comments

Comments
 (0)