Skip to content

Commit

Permalink
fix: use card v2 urls
Browse files Browse the repository at this point in the history
  • Loading branch information
bernard-ng committed Oct 14, 2024
1 parent cf55188 commit 7ff19b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/EnvironmentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function testEnvironment(): void
public function testGetVposAskUrl(): void
{
$this->assertEquals(
'https://cardpayment.flexpay.cd/api/rest/v1/vpos/ask',
'https://cardpayment.flexpay.cd/v1.1/pay',
$this->prod->getVposAskUrl()
);
$this->assertEquals(
'https://beta-cardpayment.flexpay.cd/api/rest/v1/vpos/ask',
'https://beta-cardpayment.flexpay.cd/v1.1/pay',
$this->dev->getVposAskUrl()
);
}
Expand Down

0 comments on commit 7ff19b7

Please sign in to comment.