From 65731d7d9676a4d9f838092eff8d9ae4f46d9a00 Mon Sep 17 00:00:00 2001
From: Jon Coppeard <jonco@pobox.com>
Date: Fri, 23 Nov 2018 11:58:46 +0000
Subject: [PATCH] Simplify default-property-not-set-own.js test by making it
 not import itself

---
 .../dynamic-import/namespace/default-property-not-set-own.js  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/language/expressions/dynamic-import/namespace/default-property-not-set-own.js b/test/language/expressions/dynamic-import/namespace/default-property-not-set-own.js
index 9db842278c..db527cd2f6 100644
--- a/test/language/expressions/dynamic-import/namespace/default-property-not-set-own.js
+++ b/test/language/expressions/dynamic-import/namespace/default-property-not-set-own.js
@@ -5,7 +5,7 @@
 description: The default property is not set the if the module doesn't export any default
 esid: sec-finishdynamicimport
 features: [dynamic-import]
-flags: [async, module]
+flags: [async]
 info: |
     Runtime Semantics: FinishDynamicImport ( referencingScriptOrModule, specifier, promiseCapability, completion )
 
@@ -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);
 
-- 
GitLab