Skip to content

Commit 8f96f08

Browse files
committed
ACP2E-3712: fix static error
1 parent 6979373 commit 8f96f08

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup/src/Magento/Setup/Test/Unit/Model/UninstallCollectorTest.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,9 @@ public function testUninstallCollectorWithInput()
8989
->with($this->result)
9090
->willReturn([['module' => 'Magento_A']]);
9191

92-
$this->assertEquals(['Magento_A' => 'Magento\A\Setup\Uninstall'], $this->collector->collectUninstall(['Magento_A']));
93-
}
94-
public function tearDown(): void
95-
{
96-
parent::tearDown();
92+
$this->assertEquals(
93+
['Magento_A' => 'Magento\A\Setup\Uninstall'],
94+
$this->collector->collectUninstall(['Magento_A'])
95+
);
9796
}
9897
}

0 commit comments

Comments
 (0)