File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
app/code/Magento/Customer/Test/Unit/Model Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 43
43
use Magento \Framework \Stdlib \StringUtils ;
44
44
use Magento \Framework \TestFramework \Unit \Helper \ObjectManager as ObjectManagerHelper ;
45
45
use Magento \Store \Api \Data \StoreInterface ;
46
- use Magento \Store \Model \Store ;
47
46
use Magento \Store \Model \StoreManagerInterface ;
48
47
use PHPUnit \Framework \MockObject \MockObject ;
49
48
use PHPUnit \Framework \TestCase ;
@@ -242,11 +241,6 @@ class AccountManagementApiTest extends TestCase
242
241
*/
243
242
private $ storeMock ;
244
243
245
- /**
246
- * @var Store|MockObject
247
- */
248
- private $ store ;
249
-
250
244
/**
251
245
* @inheritDoc
252
246
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
@@ -255,9 +249,6 @@ protected function setUp(): void
255
249
{
256
250
$ this ->customerFactory = $ this ->createPartialMock (CustomerFactory::class, ['create ' ]);
257
251
$ this ->manager = $ this ->getMockForAbstractClass (ManagerInterface::class);
258
- $ this ->store = $ this ->getMockBuilder (Store::class)
259
- ->disableOriginalConstructor ()
260
- ->getMock ();
261
252
$ this ->storeManager = $ this ->getMockForAbstractClass (StoreManagerInterface::class);
262
253
$ this ->random = $ this ->createMock (Random::class);
263
254
$ this ->validator = $ this ->createMock (Validator::class);
You can’t perform that action at this time.
0 commit comments