From 78aa71101667ca256e0eedb4dcd8d8ab5849f355 Mon Sep 17 00:00:00 2001 From: Daniel Stainback Date: Wed, 8 May 2019 11:48:03 -0400 Subject: [PATCH] Fix indenting --- tests/ContextTypes/OrganizationTest.php | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/ContextTypes/OrganizationTest.php b/tests/ContextTypes/OrganizationTest.php index 3ba2716..09d4e07 100644 --- a/tests/ContextTypes/OrganizationTest.php +++ b/tests/ContextTypes/OrganizationTest.php @@ -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')); } }