Skip to content

Commit 4a818e6

Browse files
authored
Fix other.test_jspi_async_function. NFC (#24590)
There was a race between #24550 and #24578 resulting in this test failing when it was landed.
1 parent 39d93be commit 4a818e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_other.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3505,10 +3505,10 @@ def test_jspi_async_function(self):
35053505
console.log('done');
35063506
};
35073507
''')
3508-
self.do_runf('main.c', 'done', emcc_args=['-sJSPI',
3509-
'--js-library=lib.js',
3510-
'-Wno-experimental',
3511-
'--post-js=post.js'])
3508+
self.do_runf('main.c', 'done', cflags=['-sJSPI',
3509+
'--js-library=lib.js',
3510+
'-Wno-experimental',
3511+
'--post-js=post.js'])
35123512

35133513
@requires_dev_dependency('typescript')
35143514
@parameterized({

0 commit comments

Comments
 (0)