aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch12/12.2/12.2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch12/12.2/12.2.js')
-rw-r--r--test/suite/intl402/ch12/12.2/12.2.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/suite/intl402/ch12/12.2/12.2.js b/test/suite/intl402/ch12/12.2/12.2.js
deleted file mode 100644
index 59785479a..000000000
--- a/test/suite/intl402/ch12/12.2/12.2.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2012 Google Inc. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @description Tests that the Intl.DateTimeFormat constructor has a length
- * property that equals 2.
- * @author: Roozbeh Pournader
- */
-
-if (!Intl.DateTimeFormat.hasOwnProperty('length')) {
- $ERROR('Intl.DateTimeFormat has no length property');
-}
-
-if (Intl.DateTimeFormat.length != 2) {
- $ERROR('Intl.DateTimeFormat.length is not 2.');
-}
-