diff --git a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php index 71b22f1b6c..befbf33024 100644 --- a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php +++ b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php @@ -925,7 +925,7 @@ public function testVarDump() { $body = $this->drupalGet('test-page-var-dump'); $this->assertSession()->statusCodeEquals(200); - // It is too strict to assert all properties of the Role and it's easy to + // It is too strict to assert all properties of the Role and it is easy to // break if one of these properties gets removed or gets a new default // value. It should be sufficient to test just a couple of properties. $this->assertStringContainsString('', $body); diff --git a/core/tests/Drupal/KernelTests/KernelTestBaseTest.php b/core/tests/Drupal/KernelTests/KernelTestBaseTest.php index b9cd459956..4c21c82adc 100644 --- a/core/tests/Drupal/KernelTests/KernelTestBaseTest.php +++ b/core/tests/Drupal/KernelTests/KernelTestBaseTest.php @@ -351,7 +351,7 @@ public function testVarDump() { $this->expectOutputRegex('|Drupal\\\\user\\\\Entity\\\\Role|'); // Assert that `#foo: bar\n` like pattern presents. $this->expectOutputRegex('|#.+:.+\\\n|'); - // It is too strict to assert all properties of the Role and it's easy to + // It is too strict to assert all properties of the Role and it is easy to // break if one of these properties gets removed or gets a new default // value. It should be sufficient to test just a couple of properties. $this->expectOutputRegex('|id.+test_role|');