Commit 95393c5b authored by Fabien Potencier's avatar Fabien Potencier

fixed some skipped comments

parent 9907dec4
...@@ -24,7 +24,7 @@ class DoctrineServiceProviderTest extends \PHPUnit_Framework_TestCase ...@@ -24,7 +24,7 @@ class DoctrineServiceProviderTest extends \PHPUnit_Framework_TestCase
public function setUp() public function setUp()
{ {
if (!is_dir(__DIR__.'/../../../../vendor/doctrine/common/lib') || !is_dir(__DIR__.'/../../../../vendor/doctrine/dbal/lib')) { if (!is_dir(__DIR__.'/../../../../vendor/doctrine/common/lib') || !is_dir(__DIR__.'/../../../../vendor/doctrine/dbal/lib')) {
$this->markTestSkipped('Doctrine Common/DBAL submodules were not installed.'); $this->markTestSkipped('Doctrine Common/DBAL dependencies were not installed.');
} }
} }
......
...@@ -28,7 +28,7 @@ class MonologServiceProviderTest extends \PHPUnit_Framework_TestCase ...@@ -28,7 +28,7 @@ class MonologServiceProviderTest extends \PHPUnit_Framework_TestCase
public function setUp() public function setUp()
{ {
if (!is_dir(__DIR__.'/../../../../vendor/monolog/monolog/src')) { if (!is_dir(__DIR__.'/../../../../vendor/monolog/monolog/src')) {
$this->markTestSkipped('Monolog submodule was not installed.'); $this->markTestSkipped('Monolog dependency was not installed.');
} }
} }
......
...@@ -26,7 +26,7 @@ class TwigServiceProviderTest extends \PHPUnit_Framework_TestCase ...@@ -26,7 +26,7 @@ class TwigServiceProviderTest extends \PHPUnit_Framework_TestCase
public function setUp() public function setUp()
{ {
if (!is_dir(__DIR__.'/../../../../vendor/twig/twig/lib')) { if (!is_dir(__DIR__.'/../../../../vendor/twig/twig/lib')) {
$this->markTestSkipped('Twig submodule was not installed.'); $this->markTestSkipped('Twig dependency was not installed.');
} }
} }
......
...@@ -24,7 +24,7 @@ class ValidatorServiceProviderTest extends \PHPUnit_Framework_TestCase ...@@ -24,7 +24,7 @@ class ValidatorServiceProviderTest extends \PHPUnit_Framework_TestCase
public function setUp() public function setUp()
{ {
if (!is_dir(__DIR__.'/../../../../vendor/symfony/validator')) { if (!is_dir(__DIR__.'/../../../../vendor/symfony/validator')) {
$this->markTestSkipped('Validator submodule was not installed.'); $this->markTestSkipped('Validator dependency was not installed.');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment