diff options
Diffstat (limited to 'tests/front')
-rw-r--r-- | tests/front/controller/TagCloudControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/front/controller/TagCloudControllerTest.php b/tests/front/controller/TagCloudControllerTest.php index a76d5835..5cbf06a9 100644 --- a/tests/front/controller/TagCloudControllerTest.php +++ b/tests/front/controller/TagCloudControllerTest.php | |||
@@ -127,8 +127,8 @@ class TagCloudControllerTest extends TestCase | |||
127 | ->expects(static::once()) | 127 | ->expects(static::once()) |
128 | ->method('bookmarksCountPerTag') | 128 | ->method('bookmarksCountPerTag') |
129 | ->with(['ghi', 'def'], BookmarkFilter::$PRIVATE) | 129 | ->with(['ghi', 'def'], BookmarkFilter::$PRIVATE) |
130 | ->willReturnCallback(function () use ($allTags): array { | 130 | ->willReturnCallback(function (): array { |
131 | return $allTags; | 131 | return ['abc' => 3]; |
132 | }) | 132 | }) |
133 | ; | 133 | ; |
134 | 134 | ||