Skip to content

Commit 07106af

Browse files
committed
MTA-3333: Deliver functional test fixes that were made during regression testing
1 parent 9f902c4 commit 07106af

File tree

2 files changed

+1
-5
lines changed
  • dev/tests/functional/tests/app/Magento/Catalog/Test

2 files changed

+1
-5
lines changed

dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function waitUntilSearchPrepared()
100100
$this->browser->waitUntil(
101101
function () {
102102
$count = count($this->_rootElement->getElements($this->searchListItems, Locator::SELECTOR_XPATH));
103-
sleep(0.2);
103+
usleep(200);
104104
$newCount = count($this->_rootElement->getElements($this->searchListItems, Locator::SELECTOR_XPATH));
105105
return $this->browser->find($this->selectorAriaBusy, Locator::SELECTOR_XPATH)->isVisible()
106106
&& ($newCount == $count)

dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Curl.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,6 @@ class Curl extends AbstractCurl implements CatalogProductSimpleInterface
119119
'Yes' => 1,
120120
'No' => 0,
121121
],
122-
'use_config_enable_qty_increments' => [
123-
'Yes' => 1,
124-
'No' => 0,
125-
],
126122
];
127123

128124
/**

0 commit comments

Comments
 (0)