Skip to content

Commit

Permalink
Fixed static tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Galvao da Gama committed Oct 14, 2020
1 parent e3fd246 commit 8d02533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/code/Magento/Wishlist/Block/AddToWishlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ class AddToWishlist extends Template

/**
* AddToWishlist constructor.
* @param ProductTypeListInterface $productTypeList
*
* @param Context $context
* @param array $data
* @param ProductTypeListInterface|null $productTypeList
*/
public function __construct(
Context $context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ define([
return;
}

handleObjSelector = $(event.currentTarget).closest('form').find(event.handleObj.selector)
handleObjSelector = $(event.currentTarget).closest('form').find(event.handleObj.selector);

handleObjSelector.each(function (index, element) {
if ($(element).is('input[type=text]') ||
Expand Down

0 comments on commit 8d02533

Please sign in to comment.