Skip to content

Commit

Permalink
Fix: Reduce scope of assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and sebastianbergmann committed Sep 8, 2018
1 parent 85d78be commit ce43508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/Util/ConfigurationTest.php
Expand Up @@ -451,8 +451,8 @@ protected function assertConfigurationEquals(Configuration $expectedConfiguratio
);

$this->assertEquals(
$expectedConfiguration->getTestSuiteConfiguration(),
$actualConfiguration->getTestSuiteConfiguration()
$expectedConfiguration->getTestSuiteConfiguration()->tests(),
$actualConfiguration->getTestSuiteConfiguration()->tests()
);
}

Expand Down

0 comments on commit ce43508

Please sign in to comment.