diff options
author | Leo Balter <leonardo.balter@gmail.com> | 2018-03-06 14:31:13 -0500 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2018-03-06 14:36:02 -0500 |
commit | ac55e29ed061a38043c61d48f198eb15509a6d62 (patch) | |
tree | cb8a604e6f4e1be396aa18bc406c5a7500fb1697 /test/built-ins/Object | |
parent | 52f70e2f637731aae92a9c9a2d831310c3ab2e1e (diff) | |
download | qtdeclarative-testsuites-ac55e29ed061a38043c61d48f198eb15509a6d62.tar.gz |
Fix yaml consistency
Diffstat (limited to 'test/built-ins/Object')
11 files changed, 33 insertions, 22 deletions
diff --git a/test/built-ins/Object/assign/ObjectOverride-sameproperty.js b/test/built-ins/Object/assign/ObjectOverride-sameproperty.js index 625669111..020b58fa2 100644 --- a/test/built-ins/Object/assign/ObjectOverride-sameproperty.js +++ b/test/built-ins/Object/assign/ObjectOverride-sameproperty.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Object properties are assigned to target in ascending index order, - i.e. a later assignment to the same property overrides an earlier assignment. +description: > + Object properties are assigned to target in ascending index order, + i.e. a later assignment to the same property overrides an earlier assignment. es6id: 19.1.2.1 ---*/ diff --git a/test/built-ins/Object/assign/OnlyOneArgument.js b/test/built-ins/Object/assign/OnlyOneArgument.js index 1c5f90fae..94fcaa7e6 100644 --- a/test/built-ins/Object/assign/OnlyOneArgument.js +++ b/test/built-ins/Object/assign/OnlyOneArgument.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: test Object.Assign(target,...sources),only one argument was passed, - return ToObject(target) +description: > + test Object.Assign(target,...sources),only one argument was passed, + return ToObject(target) es6id: 19.1.2.1.3 ---*/ diff --git a/test/built-ins/Object/assign/Override-notstringtarget.js b/test/built-ins/Object/assign/Override-notstringtarget.js index 8621d75dd..c2e9a27df 100644 --- a/test/built-ins/Object/assign/Override-notstringtarget.js +++ b/test/built-ins/Object/assign/Override-notstringtarget.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test override of Object.Assign(target,...sources), - Every string from sources will be wrapped to objects, and override from the first letter(result[0]) all the time +description: > + Test override of Object.Assign(target,...sources), + Every string from sources will be wrapped to objects, and override from the first letter(result[0]) all the time es6id: 19.1.2.1 ---*/ diff --git a/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js b/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js index 9989bb209..69ef3499a 100644 --- a/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js +++ b/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Number,Boolean,Symbol cannot have own enumerable properties, - So cannot be Assigned.Here result should be original object. +description: > + Number,Boolean,Symbol cannot have own enumerable properties, + So cannot be Assigned.Here result should be original object. esid: sec-object.assign features: [Symbol] ---*/ diff --git a/test/built-ins/Object/assign/Target-Boolean.js b/test/built-ins/Object/assign/Target-Boolean.js index 457190cbf..2d828b0c4 100644 --- a/test/built-ins/Object/assign/Target-Boolean.js +++ b/test/built-ins/Object/assign/Target-Boolean.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is Boolean,the return value should be a new object whose value is target. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is Boolean,the return value should be a new object whose value is target. es6id: 19.1.2.1.1 ---*/ diff --git a/test/built-ins/Object/assign/Target-Null.js b/test/built-ins/Object/assign/Target-Null.js index 07223a7e4..0592ac3f0 100644 --- a/test/built-ins/Object/assign/Target-Null.js +++ b/test/built-ins/Object/assign/Target-Null.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is null,Should Throw a TypeError exception. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is null,Should Throw a TypeError exception. es6id: 19.1.2.1.1 ---*/ diff --git a/test/built-ins/Object/assign/Target-Number.js b/test/built-ins/Object/assign/Target-Number.js index 0dde68edc..0cb644d60 100644 --- a/test/built-ins/Object/assign/Target-Number.js +++ b/test/built-ins/Object/assign/Target-Number.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is Number,the return value should be a new object whose value is target. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is Number,the return value should be a new object whose value is target. es6id: 19.1.2.1.1 ---*/ diff --git a/test/built-ins/Object/assign/Target-Object.js b/test/built-ins/Object/assign/Target-Object.js index 2aa73287f..ea8c0817c 100644 --- a/test/built-ins/Object/assign/Target-Object.js +++ b/test/built-ins/Object/assign/Target-Object.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is Object,its properties will be the properties of new object. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is Object,its properties will be the properties of new object. es6id: 19.1.2.1.1 ---*/ diff --git a/test/built-ins/Object/assign/Target-String.js b/test/built-ins/Object/assign/Target-String.js index 0ecbe714c..6a35fae55 100644 --- a/test/built-ins/Object/assign/Target-String.js +++ b/test/built-ins/Object/assign/Target-String.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is String,the return value should be a new object whose value is target. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is String,the return value should be a new object whose value is target. es6id: 19.1.2.1.1 ---*/ diff --git a/test/built-ins/Object/assign/Target-Symbol.js b/test/built-ins/Object/assign/Target-Symbol.js index 0917822f4..b2d0ae9f1 100644 --- a/test/built-ins/Object/assign/Target-Symbol.js +++ b/test/built-ins/Object/assign/Target-Symbol.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is Symbol,the return value should be a new Symbol object whose [[SymbolData]] value is target. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is Symbol,the return value should be a new Symbol object whose [[SymbolData]] value is target. es6id: 19.1.2.1.1 features: [Symbol] ---*/ diff --git a/test/built-ins/Object/assign/Target-Undefined.js b/test/built-ins/Object/assign/Target-Undefined.js index 03189f177..dd5ba6e38 100644 --- a/test/built-ins/Object/assign/Target-Undefined.js +++ b/test/built-ins/Object/assign/Target-Undefined.js @@ -2,8 +2,9 @@ // This code is governed by the license found in the LICENSE file. /*--- -description: Test the first argument(target) of Object.Assign(target,...sources), - if target is Undefined,Should Throw a TypeError exception. +description: > + Test the first argument(target) of Object.Assign(target,...sources), + if target is Undefined,Should Throw a TypeError exception. es6id: 19.1.2.1.1 ---*/ |