Fix L10n test

- Switched L10n::t() argument
This commit is contained in:
Philipp Holzer 2019-07-17 12:40:00 +02:00
父節點 11e4f906c2
當前提交 e175b3c733
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: D8365C3D36B77D90
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

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