]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Move L10n class from L10n subdir to Core (replacing old wrapper)
[friendica.git] / tests / src / Core / SystemTest.php
index 2f01df3446ae4b598b75f59add6b63b9b68eab0c..1b09eb46a8c11d8bd8c1e6c5a83db52f1232338e 100644 (file)
@@ -15,7 +15,7 @@ class SystemTest extends TestCase
                $baseUrl = \Mockery::mock(BaseURL::class);
                $baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
                $dice = \Mockery::mock(Dice::class);
-               $dice->shouldReceive('create')->with(BaseURL::class, [])->andReturn($baseUrl);
+               $dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
 
                DI::init($dice);
        }