Skip to content

Commit 0388d18

Browse files
author
Bryant Luk
committed
MAGETWO-34952: Final cleanup to ensure Core module is properly removed
- Move Magento\Core integration test references
1 parent 8b6ffad commit 0388d18

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dev/tests/integration/framework/Magento/TestFramework/Entity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Magento\TestFramework;
88

99
/**
10-
* Class that implements CRUD tests for \Magento\Core\Model\AbstractModel based objects
10+
* Class that implements CRUD tests for \Magento\Framework\Model\AbstractModel based objects
1111
*/
1212
class Entity
1313
{

dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function testGetDefaultEmailLogo()
185185
*/
186186
public function testSetDesignConfigException($config)
187187
{
188-
// \Magento\Core\Model\Template is an abstract class
188+
// \Magento\Email\Model\Template is an abstract class
189189
$model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
190190
->create('Magento\Email\Model\Template');
191191
$model->setDesignConfig($config);

dev/tests/integration/testsuite/Magento/Core/Model/Resource/HelperTest.php renamed to dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\Core\Model\Resource;
6+
namespace Magento\Framework\DB;
77

88
class HelperTest extends \PHPUnit_Framework_TestCase
99
{

dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type_updaters.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_layout.xsd">
99
<block class="Magento\Framework\View\Element\Text" name="block_with_object_updater_args">
1010
<arguments>
11-
<argument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="one" xsi:type="object">Magento\Core\Model\DataSource</argument>
11+
<argument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="one" xsi:type="object">Magento\Store\Model\DataSource</argument>
1212
<argument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="two" xsi:type="number">0</argument>
1313
</arguments>
1414
</block>

dev/tests/integration/testsuite/Magento/Core/Model/DataSource.php renamed to dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\Core\Model;
6+
namespace Magento\Store\Model;
77

88
/**
99
* Dummy layout argument data source object
@@ -31,7 +31,7 @@ public function getUpdaterCall()
3131
* Set updater calls
3232
*
3333
* @param array $calls
34-
* @return \Magento\Core\Model\DataSource
34+
* @return \Magento\Store\Model\DataSource
3535
*/
3636
public function setUpdaterCall(array $calls)
3737
{

0 commit comments

Comments
 (0)