Fix L10n test

- Switched L10n::t() argument
This commit is contained in:
Philipp Holzer 2019-07-17 12:40:00 +02:00
부모 11e4f906c2
커밋 e175b3c733
No known key found for this signature in database
GPG 키 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);
}
/**