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 84e7862 commit 6a9984cCopy full SHA for 6a9984c
src/Symfony/Component/Messenger/Tests/Command/StopWorkersCommandTest.php
@@ -23,7 +23,7 @@ public function testItSetsCacheItem()
23
{
24
$cachePool = $this->createMock(CacheItemPoolInterface::class);
25
$cacheItem = $this->createMock(CacheItemInterface::class);
26
- $cacheItem->expects($this->once())->method('set')->with();
+ $cacheItem->expects($this->once())->method('set');
27
$cachePool->expects($this->once())->method('getItem')->willReturn($cacheItem);
28
$cachePool->expects($this->once())->method('save')->with($cacheItem);
29
0 commit comments