Skip to content

Commit cec16d2

Browse files
authored
Fix list in test_odd_suffixes. NFC (#25824)
I broke this in #22523
1 parent 309a955 commit cec16d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_other.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ def test_odd_suffixes(self):
12351235
shutil.copy(test_file('hello_world.c'), 'test.' + suffix)
12361236
self.do_runf('test.' + suffix, 'hello, world!')
12371237

1238-
for suffix in ('lo'):
1238+
for suffix in ('lo',):
12391239
self.clear()
12401240
print(suffix)
12411241
self.run_process([EMCC, test_file('hello_world.c'), '-shared', '-o', 'binary.' + suffix])

0 commit comments

Comments
 (0)