Skip to content

Commit b65410e

Browse files
committed
#10558: Option to send currency in Google Adwords when using dynamic value
- Fixes per failed tests
1 parent 74e5671 commit b65410e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ public function testSetConversionValueWhenAdwordsActiveWithOrdersIds()
127127
$conversionCurrency = 'USD';
128128
$this->_helperMock->expects($this->once())->method('isGoogleAdwordsActive')->will($this->returnValue(true));
129129
$this->_helperMock->expects($this->once())->method('isDynamicConversionValue')->will($this->returnValue(true));
130-
$this->_helperMock->expects($this->once())->method('hasSendConversionValueCurrency')->will($this->returnValue(true));
130+
$this->_helperMock->expects($this->once())->method('hasSendConversionValueCurrency')
131+
->will($this->returnValue(true));
131132
$this->_eventMock->expects($this->once())->method('getOrderIds')->will($this->returnValue($ordersIds));
132133
$this->_eventObserverMock->expects(
133134
$this->once()

0 commit comments

Comments
 (0)