Skip to content

Commit 2c97259

Browse files
committed
double quotes escaped and test passed
1 parent 8b8d5ce commit 2c97259

File tree

1 file changed

+2
-2
lines changed
  • dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category

1 file changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/TreeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ public function testGetTreeArrayDoubleQuotesReplaced()
7373
{
7474
$tree = $this->_treeBlock->getTreeArray();
7575

76-
$this->assertNotContains('\'', $tree['children'][0]['children'][0]['children'][0]['name']);
76+
$this->assertNotContains('\"', $tree['children'][0]['children'][0]['children'][0]['name']);
7777
$this->assertEquals(
78-
'"Category 6"',
78+
'"Category 6"',
7979
$tree['children'][0]['children'][0]['children'][0]['name']
8080
);
8181
}

0 commit comments

Comments
 (0)