diff --git a/core/modules/views/src/Tests/ViewsEscapingTest.php b/core/modules/views/src/Tests/ViewsEscapingTest.php index 208a230..18e4acc 100644 --- a/core/modules/views/src/Tests/ViewsEscapingTest.php +++ b/core/modules/views/src/Tests/ViewsEscapingTest.php @@ -48,7 +48,7 @@ public function testViewsViewFieldsEscaping() { // Test with system theme using theme function. $this->drupalGet('test_page_display_200'); - // Assert that there are no escaped '<'s. + // Assert that there are no escaped '<'s characters. $this->assertNoEscaped('<'); // Install theme to test with template system. @@ -65,7 +65,7 @@ public function testViewsViewFieldsEscaping() { // Assert that we are using the correct template. $this->assertText('force', 'The force is strong with this one'); - // Assert that there are no escaped '<'s. + // Assert that there are no escaped '<'s characters. $this->assertNoEscaped('<'); }