From 3e1545894ca24f12489882f8b9fc860668898733 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 4 Jun 2024 18:47:30 +0200 Subject: [PATCH] Update clock.md --- docs/src/clock.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/clock.md b/docs/src/clock.md index 4339e4bc60..5299145916 100644 --- a/docs/src/clock.md +++ b/docs/src/clock.md @@ -202,7 +202,7 @@ await page.goto('http://localhost:3333'); // Tick through time manually, firing all timers in the process. // In this case, time will be updated in the screen 2 times. await page.clock.runFor(2000); -await expect(locator).to_have_text('2/2/2024, 10:00:02 AM') +await expect(locator).to_have_text('2/2/2024, 10:00:02 AM'); ``` ```python async