mirror of https://github.com/tc39/test262.git
Merge pull request #1965 from jonco3/master
Fix a couple of minor issues in dynamic-import tests
This commit is contained in:
commit
9084e6cea9
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
export default import('indirect-resolution-2_FIXTURE.js');
|
||||
export default import('./indirect-resolution-2_FIXTURE.js');
|
||||
|
|
|
@ -26,7 +26,7 @@ info: |
|
|||
5. Return namespace.
|
||||
---*/
|
||||
|
||||
import('./default-property-not-set-own.js').then(ns => {
|
||||
import('./empty_FIXTURE.js').then(ns => {
|
||||
|
||||
assert.sameValue(Object.prototype.hasOwnProperty.call(ns, 'default'), false);
|
||||
|
||||
|
|
Loading…
Reference in New Issue