Browse Source
Fix L10n test
- Switched L10n::t() argument
pull/7395/head
Philipp Holzer
1 year ago
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|