summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js')
-rw-r--r--test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js b/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js
deleted file mode 100644
index 801dfbaf6..000000000
--- a/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright (c) 2012 Ecma International. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-es5id: 15.2.4.2-1-1
-description: >
- Object.prototype.toString - '[object Undefined]' will be returned
- when 'this' value is undefined
----*/
-
-assert.sameValue(Object.prototype.toString.call(undefined), "[object Undefined]", 'Object.prototype.toString.call(undefined)');