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 b733990 commit fa77e7cCopy full SHA for fa77e7c
app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php
@@ -127,7 +127,7 @@ public function testSaveWithReservedId()
127
]
128
)
129
->getMockForAbstractClass();
130
- $dbAdapter->expects($this->any())->method('describeTable')->willReturn([]);
+ $dbAdapter->expects($this->any())->method('describeTable')->willReturn(['customer_group_id' => []]);
131
$dbAdapter->expects($this->any())->method('update')->willReturnSelf();
132
$dbAdapter->expects($this->once())->method('lastInsertId')->willReturn($expectedId);
133
$selectMock = $this->getMockBuilder(\Magento\Framework\DB\Select::class)
0 commit comments