diff --git a/Tests/Extension/AsseticExtensionTest.php b/Tests/Extension/AsseticExtensionTest.php index ac58925..5941d3d 100644 --- a/Tests/Extension/AsseticExtensionTest.php +++ b/Tests/Extension/AsseticExtensionTest.php @@ -185,13 +185,14 @@ public function testVariables() $this->assertEquals(2, $xml->url->count()); /** - * @todo The following test is skipped because phpunit runs differently on Travis and I have not a clue why. + * @todo The following tests are skipped because phpunit runs differently on Travis and I have not a clue why. * - * Expected string when running PhpUnit on Travis: 'js/7d0828c.a.b_foo_1.js' + * $this->assertEquals("js/7d0828c_foo_1.a.b.js", (string) $xml->url[0]); + * Expected string when running PHPUnit on Travis: 'js/7d0828c.a.b_foo_1.js' + * + * $this->assertEquals("js/7d0828c_variable_input.a_2.a.b.js", (string) $xml->url[1]); + * Expected string when running PhpUnit on Travis: 'js/7d0828c.a.b_variable_input.a_2.js' */ - // $this->assertEquals("js/7d0828c_foo_1.a.b.js", (string) $xml->url[0]); - - $this->assertEquals("js/7d0828c_variable_input.a_2.a.b.js", (string) $xml->url[1]); } }