diff --git a/core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php b/core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php index 20aa621..4beadcc 100644 --- a/core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php +++ b/core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php @@ -153,8 +153,8 @@ public function testBuildRowEntityList() { 'Page admin label', ); $this->assertEquals($expected_displays, $row['data']['view_name']['data']['#displays'], 'Wrong displays got added to view list'); - $this->assertEquals($row['data']['path']['data'][0]['#markup'], '/test_page', 'The path of the page display is not added.'); - $this->assertEquals($row['data']['path']['data'][1]['#markup'], '/<object>malformed_path</object>', 'The malformed path of the page display is not escaped.'); + $this->assertEquals($row['data']['path'][0], '/test_page', 'The path of the page display is not added.'); + $this->assertEquals($row['data']['path'][1], '/<object>malformed_path</object>', 'The malformed path of the page display is not escaped.'); } }