Skip to content

Commit f3fb017

Browse files
committed
#12825: update the mocking of select object to expect call to joinInner 6 times
1 parent cdd71a6 commit f3fb017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionSelectBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function testGetSelectWithBackendModel()
138138
{
139139
$this->select->expects($this->exactly(1))->method('from')->willReturnSelf();
140140
$this->select->expects($this->exactly(0))->method('columns')->willReturnSelf();
141-
$this->select->expects($this->exactly(5))->method('joinInner')->willReturnSelf();
141+
$this->select->expects($this->exactly(6))->method('joinInner')->willReturnSelf();
142142
$this->select->expects($this->exactly(1))->method('joinLeft')->willReturnSelf();
143143
$this->select->expects($this->exactly(2))->method('where')->willReturnSelf();
144144

0 commit comments

Comments
 (0)