From 1a81629466811b1f4dcdc476d7777b88a039e19a Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 18 Nov 2025 12:37:26 -0800 Subject: [PATCH] Fix list in test_odd_suffixes. NFC I broke this in #22523 --- test/test_other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_other.py b/test/test_other.py index 7be8a15ae9eca..743d1d9d17b30 100644 --- a/test/test_other.py +++ b/test/test_other.py @@ -1235,7 +1235,7 @@ def test_odd_suffixes(self): shutil.copy(test_file('hello_world.c'), 'test.' + suffix) self.do_runf('test.' + suffix, 'hello, world!') - for suffix in ('lo'): + for suffix in ('lo',): self.clear() print(suffix) self.run_process([EMCC, test_file('hello_world.c'), '-shared', '-o', 'binary.' + suffix])