mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/14948] Remove checks for unsupported PHP versions
PHPBB3-14948
This commit is contained in:
@@ -52,15 +52,10 @@ class phpbb_ui_test_case extends phpbb_test_case
|
||||
{
|
||||
parent::setUpBeforeClass();
|
||||
|
||||
if (version_compare(PHP_VERSION, '5.3.19', '<'))
|
||||
{
|
||||
self::markTestSkipped('UI test case requires at least PHP 5.3.19.');
|
||||
}
|
||||
else if (!class_exists('\Facebook\WebDriver\Remote\RemoteWebDriver'))
|
||||
if (!class_exists('\Facebook\WebDriver\Remote\RemoteWebDriver'))
|
||||
{
|
||||
self::markTestSkipped(
|
||||
'Could not find RemoteWebDriver class. ' .
|
||||
'Run "php ../composer.phar install" from the tests folder.'
|
||||
'Could not find RemoteWebDriver class.'
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user