File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
app/code/Magento/GoogleGtag Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ protected function setUp(): void
139
139
140
140
$ escaper ->expects ($ this ->any ())
141
141
->method ('escapeHtmlAttr ' )
142
- ->willReturnCallback (function ($ value ) {
142
+ ->willReturnCallback (function ($ value ) {
143
143
return $ value ;
144
144
});
145
145
@@ -195,7 +195,8 @@ public function testOrderTrackingData()
195
195
$ this ->searchCriteriaBuilder ->method ('create ' )->willReturn ($ searchCriteria );
196
196
$ this ->storeMock ->expects ($ this ->once ())->method ('getFrontendName ' )->willReturn ('test ' );
197
197
$ this ->storeManagerMock ->expects ($ this ->once ())->method ('getStore ' )->willReturn ($ this ->storeMock );
198
- $ this ->productMock ->expects ($ this ->once ())->method ('getAttributeText ' )->with ('manufacturer ' )->willReturn ('Brand 1 ' );
198
+ $ this ->productMock ->expects ($ this ->once ())->method ('getAttributeText ' )
199
+ ->with ('manufacturer ' )->willReturn ('Brand 1 ' );
199
200
200
201
$ expectedResult = [
201
202
'orders ' => [
Original file line number Diff line number Diff line change 7
7
"require" : {
8
8
"php" : " ~8.1.0||~8.2.0" ,
9
9
"magento/framework" : " *" ,
10
+ "magento/module-catalog" : " *" ,
10
11
"magento/module-cookie" : " *" ,
11
12
"magento/module-sales" : " *" ,
12
13
"magento/module-store" : " *"
Original file line number Diff line number Diff line change 8
8
<config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" urn:magento:framework:Module/etc/module.xsd" >
9
9
<module name =" Magento_GoogleGtag" >
10
10
<sequence >
11
+ <module name =" Magento_Catalog" />
11
12
<module name =" Magento_Store" />
12
13
<module name =" Magento_Checkout" />
13
14
</sequence >
Original file line number Diff line number Diff line change 57
57
<!-- Optional arguments block; omit it if you want to use default values -->
58
58
<arguments >
59
59
<!-- Path to config file (default is config/allure.config.php) -->
60
- <string >allure/allure.config.php</string >
60
+ <string >../../../dev/tests/unit/ allure/allure.config.php</string >
61
61
</arguments >
62
62
</extension >
63
63
</extensions >
You can’t perform that action at this time.
0 commit comments