From c412949c880692d7599b1f59167c60b411d0ae47 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 9 May 2024 09:33:04 -0700 Subject: [PATCH] [NFC] Followup to #21897 to remove unneeded test code (#21910) --- test/test_browser.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/test_browser.py b/test/test_browser.py index c64a27d2aa9e..53c60fd7888f 100644 --- a/test/test_browser.py +++ b/test/test_browser.py @@ -5480,11 +5480,8 @@ def test_audio_worklet(self, args): self.btest_exit('webaudio/audioworklet.c', args=['-sAUDIO_WORKLET', '-sWASM_WORKERS'] + args) # Tests that audioworklets and workers can be used at the same time - @parameterized({ - '': ([],), - }) - def test_audio_worklet_worker(self, args): - self.btest('webaudio/audioworklet_worker.c', args=['-sAUDIO_WORKLET', '-sWASM_WORKERS'] + args, expected='1') + def test_audio_worklet_worker(self): + self.btest('webaudio/audioworklet_worker.c', args=['-sAUDIO_WORKLET', '-sWASM_WORKERS'], expected='1') # Tests that posting functions between the main thread and the audioworklet thread works @parameterized({