From 837ced6803869f347e6ae3cdf44625f613b628dd Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 22 Sep 2014 15:59:08 -0400 Subject: [PATCH] Fixed typo -- missing $this. --- .../tests/unit-tests/src/VuFindTest/LessCompilerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFindTheme/tests/unit-tests/src/VuFindTest/LessCompilerTest.php b/module/VuFindTheme/tests/unit-tests/src/VuFindTest/LessCompilerTest.php index 8f2f4ae66cd..92cd27add9a 100644 --- a/module/VuFindTheme/tests/unit-tests/src/VuFindTest/LessCompilerTest.php +++ b/module/VuFindTheme/tests/unit-tests/src/VuFindTest/LessCompilerTest.php @@ -98,7 +98,7 @@ class LessCompilerTest extends Unit\TestCase $perms = fileperms($temp); $this->testDest = $temp . '/vufind_less_comp_test/'; 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->setBasePath($temp . '/vufind_less_comp_test'); -- GitLab