fix namespace set test (#2574)

This commit is contained in:
Gus Caplan 2020-04-10 17:17:03 -05:00 committed by GitHub
parent 27a41b6321
commit 13d057dffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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');