1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00

Updated BatchTest for GraphQL

This commit is contained in:
Anurag 2024-04-16 00:16:00 +05:30
parent b381a5c7a6
commit ed65c3809c

View file

@ -33,7 +33,7 @@ class BatchTest extends Scope
$this->assertArrayNotHasKey('errors', $response['body'][1]);
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
$this->assertArrayHasKey('localeListContinents', $response['body'][1]['data']);
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
$this->assertEquals(7, $response['body'][1]['data']['localeListContinents']['total']);
}