From: Philipp Holzer Date: Wed, 17 Jul 2019 10:40:00 +0000 (+0200) Subject: Fix L10n test X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e175b3c73373c94de07dd607c9221b42a903951c;p=friendica.git Fix L10n test - Switched L10n::t() argument --- diff --git a/tests/src/Core/InstallerTest.php b/tests/src/Core/InstallerTest.php index 59947efa33..942cdec1a5 100644 --- a/tests/src/Core/InstallerTest.php +++ b/tests/src/Core/InstallerTest.php @@ -32,7 +32,7 @@ class InstallerTest extends MockedTest private function mockL10nT(string $text, $times = null) { - $this->l10nMock->shouldReceive('t')->with($text, [])->andReturn($text)->times($times); + $this->l10nMock->shouldReceive('t')->with($text)->andReturn($text)->times($times); } /**