소스 검색
Fix L10n test
- Switched L10n::t() argument
pull/7395/head
Philipp Holzer
1 년 전
No known key found for this signature in database
GPG 키 ID: D8365C3D36B77D90
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
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); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|