From 23046425350d8ef48ecb5d253903e34f9651a0d5 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 17 May 2020 17:28:40 +0000 Subject: [PATCH] Fix test --- tests/src/Content/Text/BBCodeTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/src/Content/Text/BBCodeTest.php b/tests/src/Content/Text/BBCodeTest.php index 1a1d06dc7b..35dff87d9f 100644 --- a/tests/src/Content/Text/BBCodeTest.php +++ b/tests/src/Content/Text/BBCodeTest.php @@ -58,6 +58,9 @@ class BBCodeTest extends MockedTest $this->configMock->shouldReceive('get') ->with('system', 'no_smilies') ->andReturn(false); + $this->configMock->shouldReceive('get') + ->with('system', 'big_emojis') + ->andReturn(false); $l10nMock = \Mockery::mock(L10n::class); $l10nMock->shouldReceive('t')->withAnyArgs()->andReturnUsing(function ($args) { return $args; });