Skip to content

Commit d6f8191

Browse files
authored
Update EventTest.php
1 parent 0dc6efc commit d6f8191

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

tests/ContextTypes/EventTest.php

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class EventTest extends TestCase
2727
'postalCode' => '06514',
2828
],
2929
],
30-
'image' => 'https://google.com/some_logo.png',
31-
'description' => 'A description',
30+
'image' => 'https://google.com/some_logo.png',
31+
'description' => 'A description',
3232
];
3333

3434
/**
@@ -67,27 +67,27 @@ public function shouldHaveLocationObject()
6767
], $context->getProperty('location'));
6868
}
6969

70-
/**
71-
* @test
72-
*/
73-
public function shouldHaveImage()
74-
{
75-
$context = $this->make();
70+
/**
71+
* @test
72+
*/
73+
public function shouldHaveImage()
74+
{
75+
$context = $this->make();
7676

77-
$this->assertEquals(
78-
'https://google.com/some_logo.png'
79-
, $context->getProperty('image'));
77+
$this->assertEquals(
78+
'https://google.com/some_logo.png'
79+
, $context->getProperty('image'));
8080
}
8181

82-
/**
83-
* @test
84-
*/
85-
public function shouldHaveDescription()
86-
{
87-
$context = $this->make();
82+
/**
83+
* @test
84+
*/
85+
public function shouldHaveDescription()
86+
{
87+
$context = $this->make();
8888

89-
$this->assertEquals(
90-
'A description'
91-
, $context->getProperty('description'));
92-
}
89+
$this->assertEquals(
90+
'A description'
91+
, $context->getProperty('description'));
92+
}
9393
}

0 commit comments

Comments
 (0)