File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Customer/Test/Unit/Controller/Ajax Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,9 @@ protected function setUp()
122
122
$ this ->cookieManager = $ this ->getMockBuilder (\Magento \Framework \Stdlib \CookieManagerInterface::class)
123
123
->setMethods (['getCookie ' , 'deleteCookie ' ])
124
124
->getMockForAbstractClass ();
125
- $ this ->cookieMetadataFactory = $ this ->getMockBuilder (\ Magento \ Framework \ Stdlib \ Cookie \CookieMetadataFactory::class)
126
- -> disableOriginalConstructor ()
127
- ->getMock ();
125
+ $ this ->cookieMetadataFactory = $ this ->getMockBuilder (
126
+ \ Magento \ Framework \ Stdlib \ Cookie \CookieMetadataFactory::class
127
+ )-> disableOriginalConstructor () ->getMock ();
128
128
$ this ->cookieMetadata = $ this ->getMockBuilder (\Magento \Framework \Stdlib \Cookie \CookieMetadata::class)
129
129
->disableOriginalConstructor ()
130
130
->getMock ();
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ public function output()
269
269
$ handle = $ this ->_getHandle ();
270
270
$ this ->_session ->writeClose ();
271
271
while (true == ($ buffer = $ handle ->read (1024 ))) {
272
- echo $ buffer ;
272
+ echo $ buffer ; //@codingStandardsIgnoreLine
273
273
}
274
274
}
275
275
You can’t perform that action at this time.
0 commit comments