The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 837ced68 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed typo -- missing $this.

parent 134aae31
No related merge requests found
...@@ -98,7 +98,7 @@ class LessCompilerTest extends Unit\TestCase ...@@ -98,7 +98,7 @@ class LessCompilerTest extends Unit\TestCase
$perms = fileperms($temp); $perms = fileperms($temp);
$this->testDest = $temp . '/vufind_less_comp_test/'; $this->testDest = $temp . '/vufind_less_comp_test/';
if (!($perms & 0x0002)) { if (!($perms & 0x0002)) {
$markTestSkipped('No write permissions in system temporary file'); $this->markTestSkipped('No write permissions in system temporary file');
} }
$this->compiler = new LessCompiler(); $this->compiler = new LessCompiler();
$this->compiler->setBasePath($temp . '/vufind_less_comp_test'); $this->compiler->setBasePath($temp . '/vufind_less_comp_test');
......
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