Skip to content

Commit aa654a5

Browse files
committed
testacse
1 parent ddbec79 commit aa654a5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/PageTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,7 @@ public function testWaitUntilContainsElement(): void
445445
$page->waitUntilContainsElement('div[data-name=el]'); // search for <div data-name="el">
446446
$page->waitUntilContainsElement('div[data-name=\"el\"]'); // search for <div data-name="&quot;el&quot;'>
447447

448-
self::assertStringContainsString(self::WAIT_FOR_ELEMENT_HTML, \strtr($page->getHtml(), [
449-
'&quot;' => '"',
450-
]));
448+
self::assertStringContainsString(self::WAIT_FOR_ELEMENT_HTML, $page->getHtml());
451449
}
452450

453451
public function testWaitUntilContainsElementByXPath(): void

0 commit comments

Comments
 (0)