Skip to content

Commit cdc0df7

Browse files
committed
StyleCI
1 parent 8d53911 commit cdc0df7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/PageTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,9 @@ 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, \strtr($page->getHtml(), [
449+
'&quot;' => '"',
450+
]));
451451
}
452452

453453
public function testWaitUntilContainsElementByXPath(): void

0 commit comments

Comments
 (0)