Skip to content

Commit 43844cc

Browse files
committed
ci has different locale
1 parent c0b434b commit 43844cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/async/test_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ async def test_workers_should_format_number_using_context_locale(
200200
)
201201
worker = await worker_info.value
202202
# https://github.com/microsoft/playwright/issues/38919
203-
expected = "10.000,2" if browser_name == "firefox" else "10\u00a0000,2"
203+
expected = "10,000.2" if browser_name == "firefox" else "10\u00a0000,2"
204204
assert await worker.evaluate("() => (10000.20).toLocaleString()") == expected
205205
await context.close()
206206

0 commit comments

Comments
 (0)