Merge pull request #1965 from jonco3/master

Fix a couple of minor issues in dynamic-import tests
This commit is contained in:
Leo Balter 2018-11-26 16:15:18 -05:00 committed by GitHub
commit 9084e6cea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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');

View File

@ -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);