Skip to content

Commit

Permalink
Update EventTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Torann authored May 8, 2019
1 parent 0dc6efc commit d6f8191
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions tests/ContextTypes/EventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
];

/**
Expand Down Expand Up @@ -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'));
}
}

0 comments on commit d6f8191

Please sign in to comment.