[Shop][Channel] unify contract tests catalog

This commit is contained in:
Kamil Grygierzec 2024-02-12 14:31:49 +01:00
parent 09c717c787
commit ab323c5d08
No known key found for this signature in database
GPG key ID: 7F54EE42DAD4B9E9
3 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ final class ChannelsTest extends JsonApiTestCase
$this->client->request(method: 'GET', uri: '/api/v2/shop/channels', server: self::CONTENT_TYPE_HEADER);
$response = $this->client->getResponse();
$this->assertResponse($response, 'shop/get_channels_response', Response::HTTP_OK);
$this->assertResponse($response, 'shop/channel/get_channels_response', Response::HTTP_OK);
}
/** @test */
@ -46,6 +46,6 @@ final class ChannelsTest extends JsonApiTestCase
$this->client->request(method: 'GET', uri: '/api/v2/shop/channels/WEB', server: self::CONTENT_TYPE_HEADER);
$response = $this->client->getResponse();
$this->assertResponse($response, 'shop/get_channel_by_code_response', Response::HTTP_OK);
$this->assertResponse($response, 'shop/channel/get_channel_by_code_response', Response::HTTP_OK);
}
}