/**
  * @param array  $category
  * @param string $categoryId
  */
 protected function updateCategoryInAdminStoreView($category, $categoryId)
 {
     $category[0] = $categoryId;
     $this->client->addCall([static::SOAP_ACTION_CATEGORY_UPDATE, $category]);
     $category[2] = static::ADMIN_STOREVIEW;
     $this->client->addCall([static::SOAP_ACTION_CATEGORY_UPDATE, $category]);
 }