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 1242fbd commit b880f57Copy full SHA for b880f57
lib/internal/Magento/Framework/Mview/Test/Unit/View/ChangelogTest.php
@@ -215,10 +215,10 @@ public function testGetList()
215
$this->connectionMock->expects($this->once())
216
->method('fetchCol')
217
->with($selectMock)
218
- ->will($this->returnValue(['some_data']));
+ ->will($this->returnValue([1]));
219
220
$this->model->setViewId('viewIdtest');
221
- $this->assertEquals(['some_data'], $this->model->getList(1, 2));
+ $this->assertEquals([1], $this->model->getList(1, 2));
222
}
223
224
public function testGetListWithException()
0 commit comments