diff --git a/test/built-ins/Object/prototype/__proto__/get-name.js b/test/annexB/B.2.2.1.1.js similarity index 100% rename from test/built-ins/Object/prototype/__proto__/get-name.js rename to test/annexB/B.2.2.1.1.js diff --git a/test/built-ins/Object/prototype/__proto__/set-name.js b/test/annexB/B.2.2.1.2.js similarity index 100% rename from test/built-ins/Object/prototype/__proto__/set-name.js rename to test/annexB/B.2.2.1.2.js diff --git a/test/built-ins/RegExp/prototype/unicode/name.js b/test/built-ins/RegExp/prototype/unicode/name.js deleted file mode 100644 index 2724be58c6..0000000000 --- a/test/built-ins/RegExp/prototype/unicode/name.js +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (C) 2015 the V8 project authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. -/*--- -es6id: 21.2.5.17 -description: > - RegExp.prototype.unicode name -info: > - 17 ECMAScript Standard Built-in Objects - - Functions that are specified as get or set accessor functions of built-in - properties have "get " or "set " prepended to the property name string. -includes: [propertyHelper.js] ----*/ - -var descriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'unicode'); - -assert.sameValue( - descriptor.get.name, - 'get unicode' -); - -verifyNotEnumerable(descriptor.get, 'name'); -verifyNotWritable(descriptor.get, 'name'); -verifyConfigurable(descriptor.get, 'name');