File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
app/code/Meta/BusinessExtension/Test/Unit/Controller/Adminhtml/Ajax Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,19 @@ public function setUp(): void
75
75
$ this ->fbeInstalledFeatureResource = $ this ->createMock (FacebookInstalledFeature::class);
76
76
$ this ->request = $ this ->createMock (\Magento \Framework \App \RequestInterface::class);
77
77
$ eventManager = $ this ->createMock (EventManager::class);
78
+ $ mbeInstalls = $ this ->createMock (\Meta \BusinessExtension \Model \MBEInstalls::class);
79
+ $ logger = $ this ->createMock (\Psr \Log \LoggerInterface::class);
80
+
78
81
$ this ->fbdeleteasset = new Fbdeleteasset (
79
82
$ context ,
80
83
$ resultJsonFactory ,
81
84
$ fbeHelper ,
82
85
$ this ->systemConfig ,
83
86
$ this ->request ,
84
87
$ this ->fbeInstalledFeatureResource ,
85
- $ eventManager
88
+ $ eventManager ,
89
+ $ mbeInstalls ,
90
+ $ logger
86
91
);
87
92
}
88
93
You can’t perform that action at this time.
0 commit comments