mirror of https://github.com/tc39/test262.git
Fix importing filename in module-code/instn-star-err-not-found.js test
Fix the incorrect module filename.
This commit is contained in:
parent
dbf251586e
commit
e2fb909a1d
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export { x } from './inst-import-star-err-not-found-empty_FIXTURE.js';
|
||||
export { x } from './instn-star-err-not-found-empty_FIXTURE.js';
|
||||
|
|
|
@ -26,4 +26,4 @@ negative: SyntaxError
|
|||
flags: [module]
|
||||
---*/
|
||||
|
||||
import * as ns from './inst-import-star-err-not-found-faulty_FIXTURE.js';
|
||||
import * as ns from './instn-star-err-not-found-faulty_FIXTURE.js';
|
||||
|
|
Loading…
Reference in New Issue