Skip to content

Commit f334080

Browse files
committed
fixed unnecessary concatenation endpoint unit test
1 parent 3c521fb commit f334080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/AppleAppStore/ValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function testRequestTestNotificationReturnsToken(): void
5151
$mockClient = Mockery::mock(Client::class);
5252
$mockClient->shouldReceive('request')
5353
->once()
54-
->with('POST', 'https://api.storekit-sandbox.itunes.apple.com/inApps/v1/notifications/test', Mockery::on(function ($options) {
54+
->with('POST', '/inApps/v1/notifications/test', Mockery::on(function ($options) {
5555
return isset($options['headers']['Authorization']);
5656
}))
5757
->andReturn(new GuzzleResponse(200, [], $mockResponseBody));

0 commit comments

Comments
 (0)