Verified Commit 040541d1 authored by Dave Long's avatar Dave Long
Browse files

test: #3613115 [random test failure]...

test: #3613115 [random test failure] KernelTestHttpRequestTest::testKernelTestRoute fails intermittently because random string is not sanitized

By: godotislate
By: nitinkumar_7
(cherry picked from commit e703c474)
parent 51c6f76c
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ public function testKernelTestRoute(): void {
    $this->drupalGet('kernel-test-example');
    $this->assertSession()->statusCodeEquals(200);
    $this->assertSession()->titleEquals('Example route | Drupal');
    $this->assertSession()->pageTextContains($this->testMarkup);
    $this->assertSession()->assertEscaped($this->testMarkup);
  }

  /**