From d6f8191a743c9ed9039ef0d057491142102a57b9 Mon Sep 17 00:00:00 2001 From: Daniel Stainback Date: Wed, 8 May 2019 11:49:58 -0400 Subject: [PATCH] Update EventTest.php --- tests/ContextTypes/EventTest.php | 42 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/tests/ContextTypes/EventTest.php b/tests/ContextTypes/EventTest.php index 3243b78..2d9f7f3 100644 --- a/tests/ContextTypes/EventTest.php +++ b/tests/ContextTypes/EventTest.php @@ -27,8 +27,8 @@ class EventTest extends TestCase 'postalCode' => '06514', ], ], - 'image' => 'https://google.com/some_logo.png', - 'description' => 'A description', + 'image' => 'https://google.com/some_logo.png', + 'description' => 'A description', ]; /** @@ -67,27 +67,27 @@ public function shouldHaveLocationObject() ], $context->getProperty('location')); } - /** - * @test - */ - public function shouldHaveImage() - { - $context = $this->make(); + /** + * @test + */ + public function shouldHaveImage() + { + $context = $this->make(); - $this->assertEquals( - 'https://google.com/some_logo.png' - , $context->getProperty('image')); + $this->assertEquals( + 'https://google.com/some_logo.png' + , $context->getProperty('image')); } - /** - * @test - */ - public function shouldHaveDescription() - { - $context = $this->make(); + /** + * @test + */ + public function shouldHaveDescription() + { + $context = $this->make(); - $this->assertEquals( - 'A description' - , $context->getProperty('description')); - } + $this->assertEquals( + 'A description' + , $context->getProperty('description')); + } }