updateGroup() public method

Update a previously created company property group.
See also: http://developers.hubspot.com/docs/methods/companies/update_company_property_group
public updateGroup ( string $groupName, array $group ) : Response
$groupName string The API name of the property group that you will be updating.
$group array Defines the property group and any properties within it.
return SevenShores\Hubspot\Http\Response
 /** @test */
 public function updateGroup()
 {
     $createdGroupResponse = $this->createCompanyPropertyGroup();
     $group = ["displayName" => "An Updated Company Property Group", "displayOrder" => 6];
     $response = $this->companyProperties->updateGroup($createdGroupResponse->name, $group);
     $this->assertEquals(200, $response->getStatusCode());
     $this->assertEquals('An Updated Company Property Group', $response['displayName']);
 }