aboutsummaryrefslogtreecommitdiffstats
path: root/test/node_smoke_tests/module/lib/ensure_iterability_es6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node_smoke_tests/module/lib/ensure_iterability_es6.js')
-rw-r--r--test/node_smoke_tests/module/lib/ensure_iterability_es6.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/node_smoke_tests/module/lib/ensure_iterability_es6.js b/test/node_smoke_tests/module/lib/ensure_iterability_es6.js
index 8893267a0..3f88913d0 100644
--- a/test/node_smoke_tests/module/lib/ensure_iterability_es6.js
+++ b/test/node_smoke_tests/module/lib/ensure_iterability_es6.js
@@ -6,7 +6,7 @@ const { ensureJQuery } = await import( "./ensure_jquery.js" );
export const ensureIterability = async( jQueryModuleSpecifier ) => {
const { window } = new JSDOM( "" );
- const { default: jQueryFactory } = await import( jQueryModuleSpecifier );
+ const { jQueryFactory } = await import( jQueryModuleSpecifier );
const jQuery = jQueryFactory( window );
const elem = jQuery( "<div></div><span></span><a></a>" );