Skip to content

Commit

Permalink
Update DefaultControllerTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Nardberjean committed Dec 3, 2017
1 parent d3a5028 commit dc758a5
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions tests/FrameworkTwig/DefaultControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ public function testVersion()

public function testIndex()
{
if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) $this->markTestIncomplete(); // Test does not work any more with Symfony 3.4
if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) {
$this->markTestIncomplete();
} // Test does not work any more with Symfony 3.4

$client = static::createClient();

Expand All @@ -39,7 +41,9 @@ public function testIndex()

public function testArgument()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4
if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) {
$this->markTestIncomplete();
} // Test does not work any more with Symfony 3.4

$client = static::createClient();

Expand All @@ -55,7 +59,9 @@ public function testArgument()

public function testConstructor()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4
if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) {
$this->markTestIncomplete();
} // Test does not work any more with Symfony 3.4

$client = static::createClient();

Expand All @@ -71,7 +77,9 @@ public function testConstructor()

public function testVariadic()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4
if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) {
$this->markTestIncomplete();
} // Test does not work any more with Symfony 3.4

$client = static::createClient();

Expand Down

0 comments on commit dc758a5

Please sign in to comment.