Skip to content

Commit 8b90561

Browse files
authored
Remove unused arguments from test_emmalloc_trim. NFC (#21181)
This test was originally added with these unused args. Perhaps while it was being developed in was parameterized, but is not anymore.
1 parent f1ff06a commit 8b90561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,9 +869,9 @@ def test_emmalloc_memory_statistics(self):
869869
@no_2gb('output is sensitive to absolute data layout')
870870
@no_asan('ASan does not support custom memory allocators')
871871
@no_lsan('LSan does not support custom memory allocators')
872-
def test_emmalloc_trim(self, *args):
872+
def test_emmalloc_trim(self):
873873
self.set_setting('MALLOC', 'emmalloc')
874-
self.emcc_args += ['-sINITIAL_MEMORY=128MB', '-sALLOW_MEMORY_GROWTH', '-sMAXIMUM_MEMORY=2147418112'] + list(args)
874+
self.emcc_args += ['-sINITIAL_MEMORY=128MB', '-sALLOW_MEMORY_GROWTH', '-sMAXIMUM_MEMORY=2147418112']
875875

876876
self.do_core_test('test_emmalloc_trim.cpp')
877877

0 commit comments

Comments
 (0)