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 44ec3a7 commit 5b02f89Copy full SHA for 5b02f89
app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php
@@ -38,10 +38,19 @@ protected function setUp()
38
false
39
);
40
41
+ $urlBuilder = $this->getMock(
42
+ '\Magento\Framework\UrlInterface',
43
+ [],
44
45
+ '',
46
+ false
47
+ );
48
+
49
$collectionMock->expects($this->any())->method('getItems')->with()->willReturn([$this->indexerMock]);
50
51
$this->model = new \Magento\Indexer\Model\Message\Invalid(
- $collectionMock
52
+ $collectionMock,
53
+ $urlBuilder
54
55
}
56
0 commit comments