Skip to content

Commit

Permalink
phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
burzum committed Oct 8, 2017
1 parent 3a96c78 commit 2dad201
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions tests/TestCase/Routing/Route/EntityRouteTest.php
Expand Up @@ -63,16 +63,14 @@ public function testMatchBasic()
*/
public function testInvalidEntityValueException()
{
$route = $route = new EntityRoute('/',
[
'_name' => 'articlesView',
'_entity' => 'Something else',
]
);
$route = $route = new EntityRoute('/', [
'_name' => 'articlesView',
'_entity' => 'Something else'
]);

$route->match([
'_entity' => 'something-else',
'_name' => 'articlesView',
'_name' => 'articlesView'
]);
}
}

0 comments on commit 2dad201

Please sign in to comment.