Skip to content

Commit 9fe607b

Browse files
authored
Fix test broken by #21093 (#21097)
This change also reverts the changes made to test_other.py in #20919.
1 parent e1d06dd commit 9fe607b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_other.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12893,8 +12893,9 @@ def test_config_closure_compiler(self):
1289312893
self.run_process([EMCC, test_file('hello_world.c'), '--closure=1'])
1289412894
with env_modify({'EM_CLOSURE_COMPILER': sys.executable}):
1289512895
err = self.expect_fail([EMCC, test_file('hello_world.c'), '--closure=1'])
12896-
self.assertContained('emcc: error: unrecognized closure compiler --version output', err)
12896+
self.assertContained('closure compiler', err)
1289712897
self.assertContained(sys.executable, err)
12898+
self.assertContained('not execute properly!', err)
1289812899

1289912900
def test_node_unhandled_rejection(self):
1290012901
create_file('pre.js', '''

0 commit comments

Comments
 (0)