Skip to content

Commit 334026a

Browse files
MC-3030: Create/Update Integration Tests
- move integration tests
1 parent 17b8695 commit 334026a

13 files changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
declare(strict_types=1);
88

9-
namespace Magento\PageBuilder\Model\Config\ContentType;
9+
namespace Magento\PageBuilder\Model\Config;
1010

1111
use Magento\TestFramework\Helper\Bootstrap;
1212

@@ -38,7 +38,7 @@ protected function setUp()
3838

3939
public function testParentsAndChildrenConvertToAllowedParents()
4040
{
41-
$filePath = '/../../../_files/content_type/allowed_parent/';
41+
$filePath = '/../../_files/allowed_parent/';
4242
$fileList = [
4343
file_get_contents(__DIR__ . $filePath . 'parents_and_children_allow.xml'),
4444
file_get_contents(__DIR__ . $filePath . 'parents_and_children_deny.xml'),
@@ -56,7 +56,7 @@ public function testParentsAndChildrenConvertToAllowedParents()
5656
->method('get')
5757
->with('content_type/*.xml', 'global')
5858
->willReturn($fileList);
59-
$expected = include __DIR__ . '/../../../_files/content_type/allowed_parent/expected_merged_array.php';
59+
$expected = include __DIR__ . '/../../_files/allowed_parent/expected_merged_array.php';
6060
$this->assertEquals($expected, $this->model->read('global'));
6161
}
6262
}

0 commit comments

Comments
 (0)