Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / assign / ObjectOverride-sameproperty.js
blob81f0f531aca21d1d5c57dd45a154bf20c1363e2c
1 // Copyright 2015 Microsoft Corporation. All rights reserved.
2 // This code is governed by the license found in the LICENSE file.
4 /*---
5 description: >
6   Object properties are assigned to target in ascending index order,
7   i.e. a later assignment to the same property overrides an earlier assignment.
8 es6id:  19.1.2.1
9 ---*/
11 var target = {
12   a: 1
14 var result = Object.assign(target, {
15   a: 2
16 }, {
17   a: "c"
18 });
20 assert.sameValue(result.a, "c", "The value should be 'c'.");
22 reportCompare(0, 0);