Skip to content

Commit 04c36b8

Browse files
committed
MAGETWO-61206: [FT] UpdateSimpleProductEntityTest failed for CURL sending with video
1 parent e637b49 commit 04c36b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/tests/functional/tests/app/Magento/ProductVideo/Test/Constraint/AssertNoVideoProductView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function processAssert(
3030
InjectableFixture $initialProduct
3131
) {
3232
$browser->open($_ENV['app_frontend_url'] . $initialProduct->getUrlKey() . '.html');
33-
$catalogProductView->getViewBlock()->isGalleryVisible();
33+
3434
\PHPUnit_Framework_Assert::assertFalse(
3535
$catalogProductView->getViewBlock()->isVideoVisible(),
3636
'Product video is displayed on product view when it should not.'

dev/tests/functional/tests/app/Magento/ProductVideo/Test/Constraint/AssertVideoProductView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function processAssert(
2929
InjectableFixture $initialProduct
3030
) {
3131
$browser->open($_ENV['app_frontend_url'] . $initialProduct->getUrlKey() . '.html');
32-
$catalogProductView->getViewBlock()->isGalleryVisible();
32+
3333
\PHPUnit_Framework_Assert::assertTrue(
3434
$catalogProductView->getViewBlock()->isVideoVisible(),
3535
'Product video is not displayed on product view when it should.'

0 commit comments

Comments
 (0)