Fix L10n test

- Switched L10n::t() argument
This commit is contained in:
Philipp Holzer 2019-07-17 12:40:00 +02:00
förälder 11e4f906c2
incheckning e175b3c733
Ingen känd nyckel hittad för denna signaturen i databasen
GPG-nyckel ID: D8365C3D36B77D90
1 ändrade filer med 1 tillägg och 1 borttagningar

Visa fil

@ -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);
}
/**