We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c521fb commit f334080Copy full SHA for f334080
tests/AppleAppStore/ValidatorTest.php
@@ -51,7 +51,7 @@ public function testRequestTestNotificationReturnsToken(): void
51
$mockClient = Mockery::mock(Client::class);
52
$mockClient->shouldReceive('request')
53
->once()
54
- ->with('POST', 'https://api.storekit-sandbox.itunes.apple.com/inApps/v1/notifications/test', Mockery::on(function ($options) {
+ ->with('POST', '/inApps/v1/notifications/test', Mockery::on(function ($options) {
55
return isset($options['headers']['Authorization']);
56
}))
57
->andReturn(new GuzzleResponse(200, [], $mockResponseBody));
0 commit comments