1
0
Fork 0

Fighting with the tests

This commit is contained in:
Michael 2021-07-25 04:56:40 +00:00
commit 52378eb298
2 changed files with 4 additions and 2 deletions

View file

@ -57,8 +57,8 @@ class RouterTest extends TestCase
$this->cache->shouldReceive('set')->andReturn(false);
$this->lock = Mockery::mock(ILock::class);
$this->cache->shouldReceive('acquire')->andReturn(true);
$this->cache->shouldReceive('isLocked')->andReturn(false);
$this->lock->shouldReceive('acquire')->andReturn(true);
$this->lock->shouldReceive('isLocked')->andReturn(false);
}
public function testGetModuleClass()