Skip to content

Commit

Permalink
Remove two unneeded variable assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz committed Apr 11, 2015
1 parent 144d527 commit 4958822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Configuration/ConfiguratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function testEmptyConfiguration()
{
$backendConfig = array('easy_admin' => null);
$configurator = new Configurator($backendConfig, $this->inspector, $this->reflector);
$configuration = $configurator->getEntityConfiguration('TestEntity');
$configurator->getEntityConfiguration('TestEntity');
}

/**
Expand All @@ -71,6 +71,6 @@ public function testAccessingAnUnmanagedEntity()
{
$backendConfig = array('easy_admin' => array('entities' => array('AppBundle\\Entity\\TestEntity')));
$configurator = new Configurator($backendConfig, $this->inspector, $this->reflector);
$configuration = $configurator->getEntityConfiguration('UnmanagedEntity');
$configurator->getEntityConfiguration('UnmanagedEntity');
}
}

0 comments on commit 4958822

Please sign in to comment.