Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit c868fa2

Browse files
committed
Add a empty string return to satisfy return hints
1 parent a2ae382 commit c868fa2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup/src/Magento/Setup/Test/Unit/Model/CryptKeyGeneratorTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ public function testStringForHashingIsReadFromRandom()
3838
{
3939
$this->randomMock
4040
->expects($this->once())
41-
->method('getRandomString');
41+
->method('getRandomString')
42+
->willReturn('');
4243

4344
$this->cryptKeyGenerator->generate();
4445
}

0 commit comments

Comments
 (0)