@@ -3919,9 +3919,9 @@ def test_file_packager_returns_error_if_target_equal_to_jsoutput(self):
39193919    err = self.expect_fail([FILE_PACKAGER, 'test.data', '--js-output=test.data'])
39203920    self.assertContained(MESSAGE, err)
39213921
3922-   def test_file_packager_returns_error_if_emcc_and_modularize (self):
3923-     MESSAGE = 'error: Can\'t use modularize  option together with --from-emcc since the code should be embedded within emcc\'s code'
3924-     err = self.expect_fail([FILE_PACKAGER, 'test.data', '--modularize ', '--from-emcc'])
3922+   def test_file_packager_returns_error_if_emcc_and_export_es6 (self):
3923+     MESSAGE = 'error: Can\'t use --export-es6  option together with --from-emcc since the code should be embedded within emcc\'s code'
3924+     err = self.expect_fail([FILE_PACKAGER, 'test.data', '--export-es6 ', '--from-emcc'])
39253925    self.assertContained(MESSAGE, err)
39263926
39273927  def test_file_packager_embed(self):
@@ -3950,7 +3950,7 @@ def test_file_packager_embed(self):
39503950    output = self.run_js('a.out.js')
39513951    self.assertContained('hello data', output)
39523952
3953-   def test_file_packager_standalone_modularize (self):
3953+   def test_file_packager_export_es6 (self):
39543954    MESSAGE = 'Remember to build the main file with `-sFORCE_FILESYSTEM` so that it includes support for loading this file package'
39553955
39563956    create_file('data.txt', 'hello data')
0 commit comments