summaryrefslogtreecommitdiffstats
path: root/tests/Core/Controller/CssControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Core/Controller/CssControllerTest.php')
-rw-r--r--tests/Core/Controller/CssControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Core/Controller/CssControllerTest.php b/tests/Core/Controller/CssControllerTest.php
index c0d1ea42f41..daccee82705 100644
--- a/tests/Core/Controller/CssControllerTest.php
+++ b/tests/Core/Controller/CssControllerTest.php
@@ -158,13 +158,13 @@ class CssControllerTest extends TestCase {
->willReturn($folder);
$folder->method('getFile')
- ->will($this->returnCallback(
+ ->willReturnCallback(
function($fileName) use ($file) {
if ($fileName === 'file.css') {
return $file;
}
throw new NotFoundException();
- })
+ }
);
$this->request->method('getHeader')