diff --git a/test/rest/REST_test.js b/test/rest/REST_test.js index b77defdc1..dc7bdc5d7 100644 --- a/test/rest/REST_test.js +++ b/test/rest/REST_test.js @@ -143,9 +143,9 @@ describe('REST', () => { }); it('should be able to parse JSON responses', async () => { - await I.sendGetRequest('https://jsonplaceholder.typicode.com/comments/1'); + await I.sendGetRequest('https://reqres.in/api/comments/1'); await jsonResponse.seeResponseCodeIsSuccessful(); - await jsonResponse.seeResponseContainsKeys(['id', 'name', 'email']); + await jsonResponse.seeResponseContainsKeys(['data', 'support']); }); });