Skip to content

Commit

Permalink
fix namespace set test (#2574)
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnek authored Apr 10, 2020
1 parent 27a41b6 commit 13d057d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/language/module-code/namespace/internals/set.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ flags: [module]
features: [Reflect, Symbol, Symbol.toStringTag]
---*/

import * as ns from './define-own-property.js';
import * as ns from './set.js';
export var local1 = null;
var local2 = null;
export { local2 as renamed };
export { local1 as indirect } from './define-own-property.js';
export { local1 as indirect } from './set.js';
var sym = Symbol('test262');

assert.sameValue(Reflect.set(ns, 'local1'), false, 'Reflect.set: local1');
Expand Down

0 comments on commit 13d057d

Please sign in to comment.