File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
dev/tests/unit/Magento/FunctionalTestFramework/Util Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,10 @@ public function testAllowSkipped()
119
119
public function testFilter ()
120
120
{
121
121
// Mock filters for TestGenerator
122
- AspectMock::double (MftfApplicationConfig::class, ['getFilterList ' => new FilterList (['severity ' => ["CRITICAL " ]])]);
122
+ AspectMock::double (
123
+ MftfApplicationConfig::class,
124
+ ['getFilterList ' => new FilterList (['severity ' => ["CRITICAL " ]])]
125
+ );
123
126
124
127
$ actionInput = 'fakeInput ' ;
125
128
$ actionObject = new ActionObject ('fakeAction ' , 'comment ' , [
@@ -146,7 +149,7 @@ public function testFilter()
146
149
147
150
// Mock createCestFile to return name of tests that testGenerator tried to create
148
151
$ generatedTests = [];
149
- AspectMock::double (TestGenerator::class, ['createCestFile ' => function ($ arg1 , $ arg2 ) use (&$ generatedTests ){
152
+ AspectMock::double (TestGenerator::class, ['createCestFile ' => function ($ arg1 , $ arg2 ) use (&$ generatedTests ) {
150
153
$ generatedTests [$ arg2 ] = true ;
151
154
}]);
152
155
You can’t perform that action at this time.
0 commit comments