From 71e5002cc3e86fb4091a460979174bee2a609195 Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Sat, 6 Jun 2015 12:40:03 -0400 Subject: [PATCH] harder test of modified default exports --- test/function/default-export-is-not-bound/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/function/default-export-is-not-bound/main.js b/test/function/default-export-is-not-bound/main.js index e706c04..75ef7ba 100644 --- a/test/function/default-export-is-not-bound/main.js +++ b/test/function/default-export-is-not-bound/main.js @@ -1,6 +1,6 @@ -import value from './foo'; +import a from './foo'; import { change } from './foo'; -assert.equal( value, 42 ); +assert.equal( a, 42 ); change(); -assert.equal( value, 42, 'default export should not be bound' ); +assert.equal( a, 42, 'default export should not be bound' );