From 18390503788d7663debb81ee2abd477696fb0cb3 Mon Sep 17 00:00:00 2001
From: Rick Waldron <waldron.rick@gmail.com>
Date: Fri, 23 Jun 2017 11:09:37 -0400
Subject: [PATCH] Removes relocated error.js tests

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
---
 test/harness/error.js | 29 -----------------------------
 1 file changed, 29 deletions(-)
 delete mode 100644 test/harness/error.js

diff --git a/test/harness/error.js b/test/harness/error.js
deleted file mode 100644
index 36463225c5..0000000000
--- a/test/harness/error.js
+++ /dev/null
@@ -1,29 +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.
-
-/*---
-description: >
-    The global `$ERROR` function throws an instance of the global `Test262Error`
-    function with the specified message.
-includes: [sta.js]
----*/
-var threw = false;
-
-try {
-  $ERROR('This is a test message');
-} catch(err) {
-  threw = true;
-  if (err.constructor !== Test262Error) {
-    throw new Error(
-      'Expected a Test262Error, but a "' + err.constructor.name +
-      '" was thrown.'
-    );
-  }
-  if (err.message !== 'This is a test message') {
-    throw new Error('The error thrown did not define the specified message.');
-  }
-}
-
-if (threw === false) {
-  $ERROR('Expected a Test262Error, but no error was thrown.');
-}
-- 
GitLab