Merge pull request #7395 from nupplaphil/bug/l10n_test

Fix InstallerTest
This commit is contained in:
Hypolite Petovan 2019-07-17 08:08:42 -04:00 committed by GitHub
commit 6717df2c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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