Skip to content

Commit 84ba0e2

Browse files
committed
MC-20668: Edit custom options of simple product
1 parent 3dbe4a7 commit 84ba0e2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Save/UpdateCustomOptionsTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ public function testUpdateCustomOptionWithTypeField(array $optionData, array $up
121121
$updatedOption = reset($updatedOptions);
122122
$this->assertEquals($newValue, $updatedOption->getDataUsingMethod($methodKey));
123123
$this->assertEquals($option->getOptionId(), $updatedOption->getOptionId());
124-
$this->assertNotEquals($option->getDataUsingMethod($methodKey), $updatedOption->getDataUsingMethod($methodKey));
124+
$this->assertNotEquals(
125+
$option->getDataUsingMethod($methodKey),
126+
$updatedOption->getDataUsingMethod($methodKey)
127+
);
125128
}
126129
}
127130
}

0 commit comments

Comments
 (0)