mirror of
https://github.com/friendica/friendica
synced 2024-11-15 06:53:53 +00:00
Fix code style
This commit is contained in:
parent
8b500926ee
commit
bbf7e4a936
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class CryptoTest extends TestCase
|
||||||
public function testRandomDigitsRandomInt()
|
public function testRandomDigitsRandomInt()
|
||||||
{
|
{
|
||||||
$random_int = $this->getFunctionMock('Friendica\Util', 'random_int');
|
$random_int = $this->getFunctionMock('Friendica\Util', 'random_int');
|
||||||
$random_int->expects($this->any())->willReturnCallback(function($min, $max) {
|
$random_int->expects($this->any())->willReturnCallback(function ($min, $max) {
|
||||||
return 12345678;
|
return 12345678;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue