Browse Source

fix typo in test

contingency-plan
Rich-Harris 9 years ago
parent
commit
b09bce28b5
  1. 4
      test/function/export-from-with-definition-conflict/main.js

4
test/function/export-from-with-definition-conflict/main.js

@ -5,5 +5,5 @@ export { foo as bar } from './a';
export { bar as foo } from './a';
export { baz } from './a';
assert.equal( foo, 'b-foo' );
assert.equal( baz, 'b-baz' );
assert.equal( foo, 'local-foo' );
assert.equal( baz, 'local-baz' );

Loading…
Cancel
Save