diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Config/ScopePoolTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Config/ScopePoolTest.php deleted file mode 100644 index 8e000676c7a68..0000000000000 --- a/dev/tests/integration/testsuite/Magento/Framework/App/Config/ScopePoolTest.php +++ /dev/null @@ -1,49 +0,0 @@ -removeSharedInstance(ScopePool::class); - $this->scopePool = $objectManager->get(ScopePool::class); - } - - /** - * @param string $scopeType - * @param string $scopeCode - * @dataProvider getScopeDataProvider - */ - public function testGetScope($scopeType, $scopeCode = null) - { - $this->scopePool->clean(); - $this->assertEquals( - $this->scopePool->getScope($scopeType, $scopeCode), - $this->scopePool->getScope($scopeType, $scopeCode) - ); - } - - public function getScopeDataProvider() - { - return [ - ['default'], - ['stores', 'default'], - ['websites', 'default'] - ]; - } -}