diff --git a/tests/src/App/RouterTest.php b/tests/src/App/RouterTest.php index a3e8b026bf..8317702cdf 100644 --- a/tests/src/App/RouterTest.php +++ b/tests/src/App/RouterTest.php @@ -55,6 +55,8 @@ class RouterTest extends TestCase $this->cache = Mockery::mock(ICache::class); $this->cache->shouldReceive('get')->andReturn(null); $this->cache->shouldReceive('set')->andReturn(false); + + $this->lock = Mockery::mock(ILock::class); } public function testGetModuleClass()