From d993c4a9e8ee46cde14f7033e5ae6ff14475685f Mon Sep 17 00:00:00 2001
From: Mathias Bynens <mathias@qiwi.be>
Date: Thu, 13 Apr 2017 20:40:18 +0200
Subject: [PATCH] Fix three broken RegExp property escape tests (#974)

https://github.com/mathiasbynens/unicode-property-escapes-tests/commit/c62ed61cfc7c3c7d596f922facee2c0152555d8f
---
 test/built-ins/RegExp/property-escapes/Assigned.js               | 1 -
 .../RegExp/property-escapes/General_Category_-_Other.js          | 1 -
 .../RegExp/property-escapes/General_Category_-_Surrogate.js      | 1 -
 3 files changed, 3 deletions(-)

diff --git a/test/built-ins/RegExp/property-escapes/Assigned.js b/test/built-ins/RegExp/property-escapes/Assigned.js
index c068748773..7f80fd50bf 100644
--- a/test/built-ins/RegExp/property-escapes/Assigned.js
+++ b/test/built-ins/RegExp/property-escapes/Assigned.js
@@ -891,7 +891,6 @@ const nonMatchSymbols = buildString({
     0x01F93F
   ],
   ranges: [
-    [0x00DC00, 0x00DFFF],
     [0x000378, 0x000379],
     [0x000380, 0x000383],
     [0x000557, 0x000558],
diff --git a/test/built-ins/RegExp/property-escapes/General_Category_-_Other.js b/test/built-ins/RegExp/property-escapes/General_Category_-_Other.js
index a7457f8e7c..719dc1557b 100644
--- a/test/built-ins/RegExp/property-escapes/General_Category_-_Other.js
+++ b/test/built-ins/RegExp/property-escapes/General_Category_-_Other.js
@@ -764,7 +764,6 @@ const nonMatchSymbols = buildString({
     0x01F9C0
   ],
   ranges: [
-    [0x00DC00, 0x00DFFF],
     [0x000020, 0x00007E],
     [0x0000A0, 0x0000AC],
     [0x0000AE, 0x000377],
diff --git a/test/built-ins/RegExp/property-escapes/General_Category_-_Surrogate.js b/test/built-ins/RegExp/property-escapes/General_Category_-_Surrogate.js
index 935ae9cc20..d0ef0fd02b 100644
--- a/test/built-ins/RegExp/property-escapes/General_Category_-_Surrogate.js
+++ b/test/built-ins/RegExp/property-escapes/General_Category_-_Surrogate.js
@@ -54,7 +54,6 @@ testPropertyEscapes(
 const nonMatchSymbols = buildString({
   loneCodePoints: [],
   ranges: [
-    [0x00DC00, 0x00DFFF],
     [0x000000, 0x00D7FF],
     [0x00E000, 0x10FFFF]
   ]
-- 
GitLab