Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 8089b5d

Browse files
author
Ben Batschelet
committed
Use native function instead of Zend_Mime_Decode::decodeQuotedPrintable()
1 parent 075c455 commit 8089b5d

File tree

1 file changed

+1
-3
lines changed
  • dev/tests/integration/testsuite/Magento/Wishlist/Controller

1 file changed

+1
-3
lines changed

dev/tests/integration/testsuite/Magento/Wishlist/Controller/IndexTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,7 @@ public function testSendAction()
169169
\Magento\TestFramework\Mail\Template\TransportBuilderMock::class
170170
);
171171

172-
$actualResult = \Zend_Mime_Decode::decodeQuotedPrintable(
173-
$transportBuilder->getSentMessage()->getRawMessage()
174-
);
172+
$actualResult = quoted_printable_decode($transportBuilder->getSentMessage()->getRawMessage());
175173

176174
$this->assertStringMatchesFormat(
177175
'%A' . $this->_customerViewHelper->getCustomerName($this->_customerSession->getCustomerDataObject())

0 commit comments

Comments
 (0)