fix recursion

This commit is contained in:
Robin Appelman 2021-03-09 21:13:12 +01:00
commit 037efdcfb5
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ class ServerFactoryTest extends TestCase {
->willReturn(false);
$system->expects($this->any())
->method('getSmbclientPath')
->willReturn(false);
->willReturn(null);
$factory = new ServerFactory(null, $system);
$factory->createServer('localhost', $this->credentials);
}