We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa895c commit ea54bb4Copy full SHA for ea54bb4
tests/TestCase/Model/Table/RequestTableTest.php
@@ -83,7 +83,9 @@ public function testGc()
83
{
84
/** @var \PHPUnit\Framework\MockObject\MockObject&\DebugKit\Model\Table\RequestsTable $requestsTableMock */
85
$requestsTableMock = $this->getMockForModel('DebugKit.Requests', ['shouldGc']);
86
- $requestsTableMock->method('shouldGc')
+ $requestsTableMock
87
+ ->expects($this->atLeastOnce())
88
+ ->method('shouldGc')
89
->willReturn(true);
90
91
$data = array_fill(0, 10, [
0 commit comments