We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7572b commit fe04c3fCopy full SHA for fe04c3f
tests/async/test_worker.py
@@ -199,7 +199,7 @@ async def test_workers_should_format_number_using_context_locale(
199
"() => new Worker(URL.createObjectURL(new Blob(['console.log(1)'], {type: 'application/javascript'})))"
200
)
201
worker = await worker_info.value
202
- # Firefox 146 seems to have a locale bug
+ # https://github.com/microsoft/playwright/issues/38919
203
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()
0 commit comments