Skip to content

Commit

Permalink
Update DefaultControllerTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Nardberjean committed Mar 11, 2018
1 parent 117a7e9 commit facef4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/FrameworkTwig/DefaultControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class DefaultControllerTest extends WebTestCase
public function testVersion()
{
$this->assertSame(
'3.4.0',
'3.4.6',
Symfony\Component\HttpKernel\Kernel::VERSION
);
}

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

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

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

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

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

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

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

Expand Down

0 comments on commit facef4e

Please sign in to comment.