From 54872bdbdf795d76b360a691b4ce4437aa52ca31 Mon Sep 17 00:00:00 2001 From: Elizabeth Mitchell Date: Tue, 20 Feb 2024 15:32:34 -0800 Subject: [PATCH] chore: remove FF bug todo from test PiperOrigin-RevId: 608762761 --- radio/radio_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radio/radio_test.ts b/radio/radio_test.ts index 02dcaa80a..fbfec8d5e 100644 --- a/radio/radio_test.ts +++ b/radio/radio_test.ts @@ -41,8 +41,8 @@ describe('', () => { async function simulateKeyDown(element: HTMLElement, key: string) { const event = new KeyboardEvent('keydown', {key, bubbles: true}); element.dispatchEvent(event); - // TODO(https://bugzilla.mozilla.org/show_bug.cgi?id=1804576) - // Remove delay when issue addressed. + // We can remove the delay when FF issue addressed: + // https://bugzilla.mozilla.org/show_bug.cgi?id=1804576 await env.waitForStability(); }