Skip to content

Commit

Permalink
Remove extra if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Feb 21, 2017
1 parent 482cf44 commit 53a575b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/Fixture/FixtureInjector.php
Expand Up @@ -24,7 +24,7 @@ class_alias('PHPUnit_Framework_Warning', 'PHPUnit\Framework\Warning');
if (!class_exists('PHPUnit\Framework\TestSuite')) {
class_alias('PHPUnit_Framework_TestSuite', 'PHPUnit\Framework\TestSuite');
}
if (class_exists('PHPUnit_Runner_Version') && !class_exists('PHPUnit\Framework\AssertionFailedError')) {
if (!class_exists('PHPUnit\Framework\AssertionFailedError')) {
class_alias('PHPUnit_Framework_AssertionFailedError', 'PHPUnit\Framework\AssertionFailedError');
}
}
Expand Down

0 comments on commit 53a575b

Please sign in to comment.