We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b751e0e commit 612de0aCopy full SHA for 612de0a
test/test_other.py
@@ -15880,8 +15880,8 @@ def test_mainScriptUrlOrBlob(self, es6):
15880
15881
# First run without foo.js present to verify that the pthread creation fails
15882
err = self.run_js('a.out.js', assert_returncode=NON_ZERO)
15883
- self.assertContained('Cannot find module.*foo', err, regex=True)
+ self.assertContained('Cannot find module.*foo.js', err, regex=True)
15884
15885
- # Now create foo.{mjs,js} and the program should run as expected.
+ # Now create foo.js and the program should run as expected.
15886
shutil.copy('a.out.js', 'foo.js')
15887
self.assertContained('hello, world', self.run_js('a.out.js'))
0 commit comments