Skip to content

Commit 882d3de

Browse files
committed
Fix Integration test failure for testSuccessfulNotification test
1 parent 934142a commit 882d3de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Paypal/Model/Payflow/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Request extends \Magento\Framework\DataObject
2424
*/
2525
public function __call($method, $args)
2626
{
27-
$key = $this->_underscore(substr($method, 3));
27+
$key = $this->_underscore($method);
2828
if (isset($args[0]) && (strstr($args[0], '=') || strstr($args[0], '&'))) {
2929
$key .= '[' . strlen($args[0]) . ']';
3030
}

0 commit comments

Comments
 (0)