diff --git a/test/browser/test_sdl2_mixer_music.c b/test/browser/test_sdl2_mixer_music.c index 132b71916d944..4eece1ba18ad9 100644 --- a/test/browser/test_sdl2_mixer_music.c +++ b/test/browser/test_sdl2_mixer_music.c @@ -26,7 +26,7 @@ int main(int argc, char* argv[]) return -1; } - frequency = EM_ASM_INT_V({ + frequency = EM_ASM_INT({ var context; try { context = new AudioContext(); diff --git a/test/browser/test_sdl2_mixer_wav.c b/test/browser/test_sdl2_mixer_wav.c index a684fa87320b8..cb82c8abba7c5 100644 --- a/test/browser/test_sdl2_mixer_wav.c +++ b/test/browser/test_sdl2_mixer_wav.c @@ -30,7 +30,7 @@ int main(int argc, char* argv[]){ puts("Failed to init audio"); return 100; } - int const frequency = EM_ASM_INT_V({ + int const frequency = EM_ASM_INT({ var context; try { context = new AudioContext(); diff --git a/test/core/test_inlinejs3.c b/test/core/test_inlinejs3.c index b02bbe04242fe..8f13d060edc1b 100644 --- a/test/core/test_inlinejs3.c +++ b/test/core/test_inlinejs3.c @@ -20,7 +20,6 @@ int main(int argc, char **argv) { EM_ASM(out('hello dere3'); out('hello dere' + 4);); } EM_ASM({ out('hello input ' + $0) }, 123); - EM_ASM_ARGS({ out('hello input ' + $0) }, 456); int sum = 0; for (int i = 0; i < argc * 3; i++) { sum += EM_ASM_INT({ diff --git a/test/core/test_inlinejs3.out b/test/core/test_inlinejs3.out index e65cddda353a2..ac2a959bfc469 100644 --- a/test/core/test_inlinejs3.out +++ b/test/core/test_inlinejs3.out @@ -7,7 +7,6 @@ hello dere4 hello dere3 hello dere4 hello input 123 -hello input 456 i: 0,0.00 i: 1,0.08 i: 2,0.17 diff --git a/test/fs/test_mmap.c b/test/fs/test_mmap.c index 1f697a444413b..5d3927d8a4fd6 100644 --- a/test/fs/test_mmap.c +++ b/test/fs/test_mmap.c @@ -235,7 +235,7 @@ void test_mmap_overallocate() { assert(write(fd, "a", 1) != -1); } - EM_ASM_({ + EM_ASM({ const stream = FS.streams.find(stream => stream.path.indexOf('yolo/overallocatedfile.txt') >= 0); assert(stream.node.usedBytes === Number($0), 'Used bytes on the over-allocated file (' + stream.node.usedBytes + ') ' +