We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0b434b commit 43844ccCopy full SHA for 43844cc
tests/async/test_worker.py
@@ -200,7 +200,7 @@ async def test_workers_should_format_number_using_context_locale(
200
)
201
worker = await worker_info.value
202
# https://github.com/microsoft/playwright/issues/38919
203
- expected = "10.000,2" if browser_name == "firefox" else "10\u00a0000,2"
+ expected = "10,000.2" if browser_name == "firefox" else "10\u00a0000,2"
204
assert await worker.evaluate("() => (10000.20).toLocaleString()") == expected
205
await context.close()
206
0 commit comments