From 6f3372b1c9fa02d346e45be81b99a166f493f954 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Fri, 18 Sep 2015 10:26:00 -0700 Subject: [PATCH] Fix test broken by I826adf9 Change-Id: I4313188767d47cf9efcfd24ed2716475a289bb77 --- tests/phpunit/LessFileCompilationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/LessFileCompilationTest.php b/tests/phpunit/LessFileCompilationTest.php index 73fa0b5dc3..eec02edc64 100644 --- a/tests/phpunit/LessFileCompilationTest.php +++ b/tests/phpunit/LessFileCompilationTest.php @@ -45,7 +45,7 @@ class LessFileCompilationTest extends ResourceLoaderTestCase { $method->setAccessible( true ); $compiler = $method->invoke( $this->module, $rlContext ); - $this->assertNotNull( $compiler->compileFile( $this->file ) ); + $this->assertNotNull( $compiler->parseFile( $this->file )->getCss() ); } public function toString() { -- 2.20.1