Skip to content

Commit

Permalink
Fix indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Torann authored May 8, 2019
1 parent 381fde5 commit 78aa711
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tests/ContextTypes/OrganizationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ public function shouldHaveContactPointObject()
], $context->getProperty('contactPoint'));
}

/**
* @test
*/
public function shouldHaveAddressArray()
{
$context = $this->make();

$this->assertEquals([
'@type' => 'PostalAddress',
'streetAddress' => '112 Apple St.',
'addressLocality' => 'Hamden',
'addressRegion' => 'CT',
'postalCode' => '06514',
], $context->getProperty('address'));
/**
* @test
*/
public function shouldHaveAddressArray()
{
$context = $this->make();

$this->assertEquals([
'@type' => 'PostalAddress',
'streetAddress' => '112 Apple St.',
'addressLocality' => 'Hamden',
'addressRegion' => 'CT',
'postalCode' => '06514',
], $context->getProperty('address'));
}
}

0 comments on commit 78aa711

Please sign in to comment.