Skip to content

Commit 35c306e

Browse files
committed
MAGETWO-44723: Errors related to mixed content after redirecting from wishlist to product page when secure URLs for storefront used
1 parent 404790a commit 35c306e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Review/Test/Unit/Block/FormTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function testGetAction($isSecure, $actionUrl, $productId)
122122
->method('isSecure')
123123
->willReturn($isSecure);
124124

125-
$this->assertEquals($actionUrl . '/id/' . $productId , $this->object->getAction());
125+
$this->assertEquals($actionUrl . '/id/' . $productId, $this->object->getAction());
126126
}
127127

128128
public function getActionDataProvider()

app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public function testGetProductReviewUrl($isSecure, $actionUrl, $productId)
198198
->method('isSecure')
199199
->willReturn($isSecure);
200200

201-
$this->assertEquals($actionUrl . '/id/' . $productId , $this->block->getProductReviewUrl());
201+
$this->assertEquals($actionUrl . '/id/' . $productId, $this->block->getProductReviewUrl());
202202
}
203203

204204
public function getProductReviewUrlDataProvider()

0 commit comments

Comments
 (0)