diff --git a/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier-2.js b/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier-2.js deleted file mode 100644 index 372556757e..0000000000 --- a/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier-2.js +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2017 the V8 project authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -description: \u{} escapes in GroupSpecifier allowed only in Unicode mode -esid: prod-GroupSpecifier -negative: - phase: parse - type: SyntaxError -features: [regexp-named-groups] ----*/ - -$DONOTEVALUATE(); - -/(?<\u{03C0}>a)/; diff --git a/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier.js b/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier.js deleted file mode 100644 index ebf457a3a5..0000000000 --- a/test/language/literals/regexp/named-groups/invalid-u-escape-in-groupspecifier.js +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2017 the V8 project authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -description: \u{} escapes in GroupSpecifier allowed only in Unicode mode -esid: prod-GroupSpecifier -negative: - phase: parse - type: SyntaxError -features: [regexp-named-groups] ----*/ - -$DONOTEVALUATE(); - -/(?<\u{0041}>.)/;