Skip to content

Commit 8225f66

Browse files
committed
MAGETWO-75322: magento#10922 add is_active to Magento\Store\Api\Data\StoreInterface magento#10923
- fix WebAPI test
1 parent 9910534 commit 8225f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/api-functional/testsuite/Magento/Store/Api/StoreRepositoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testGetList()
4040
$storeViews = $this->_webApiCall($serviceInfo, $requestData);
4141
$this->assertNotNull($storeViews);
4242
$this->assertGreaterThan(1, count($storeViews));
43-
$keys = ['id', 'code', 'name', 'website_id', 'store_group_id'];
43+
$keys = ['id', 'code', 'name', 'website_id', 'store_group_id', 'is_active'];
4444
$this->assertEquals($keys, array_keys($storeViews[0]));
4545
}
4646
}

0 commit comments

Comments
 (0)