mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11528] Fix spaces and slashes as per guidelines
PHPBB3-11528
This commit is contained in:
parent
f5aa9732d1
commit
a92c1d1ec0
2 changed files with 4 additions and 4 deletions
|
@ -11,8 +11,8 @@
|
|||
*
|
||||
*/
|
||||
use Symfony\Component\BrowserKit\CookieJar;
|
||||
use \Behat\Mink\Driver\Goutte\Client;
|
||||
use \Behat\Mink\Driver\GoutteDriver;
|
||||
use Behat\Mink\Driver\Goutte\Client;
|
||||
use Behat\Mink\Driver\GoutteDriver;
|
||||
|
||||
class phpbb_functional_test_case extends phpbb_mink_test_case
|
||||
{
|
||||
|
|
|
@ -40,12 +40,12 @@ abstract class phpbb_mink_test_case extends phpbb_test_case
|
|||
{
|
||||
parent::setUp();
|
||||
|
||||
if(!self::$driver)
|
||||
if (!self::$driver)
|
||||
{
|
||||
self::markTestSkipped('Mink driver not initialized.');
|
||||
}
|
||||
|
||||
if(!self::$session)
|
||||
if (!self::$session)
|
||||
{
|
||||
self::$session = new Session(self::$driver);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue