Skip to content

Commit

Permalink
MAGETWO-75322: #10922 add is_active to Magento\Store\Api\Data\StoreIn…
Browse files Browse the repository at this point in the history
…terface #10923

- fix WebAPI test
  • Loading branch information
vrann committed Oct 12, 2017
1 parent 9910534 commit 8225f66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function testGetList()
$storeViews = $this->_webApiCall($serviceInfo, $requestData);
$this->assertNotNull($storeViews);
$this->assertGreaterThan(1, count($storeViews));
$keys = ['id', 'code', 'name', 'website_id', 'store_group_id'];
$keys = ['id', 'code', 'name', 'website_id', 'store_group_id', 'is_active'];
$this->assertEquals($keys, array_keys($storeViews[0]));
}
}

0 comments on commit 8225f66

Please sign in to comment.