Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Sep 12, 2020
1 parent 657e5ae commit 36ee47f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/AAASmokeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ public function smoke()
*/
public function php_version_satisfies_requirements()
{
$this->assertFalse(version_compare(PHP_VERSION, self::MIN_PHP_VERSION, '<'),
$this->assertFalse(
version_compare(PHP_VERSION, self::MIN_PHP_VERSION, '<'),
'PHP version ' . self::MIN_PHP_VERSION . ' or greater is required but only '
. PHP_VERSION . ' found.');
. PHP_VERSION . ' found.'
);
}
}

0 comments on commit 36ee47f

Please sign in to comment.