summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/min/S15.8.2.12_A4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Math/min/S15.8.2.12_A4.js')
-rw-r--r--test/built-ins/Math/min/S15.8.2.12_A4.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Math/min/S15.8.2.12_A4.js b/test/built-ins/Math/min/S15.8.2.12_A4.js
index d2555044c..e4f16bed2 100644
--- a/test/built-ins/Math/min/S15.8.2.12_A4.js
+++ b/test/built-ins/Math/min/S15.8.2.12_A4.js
@@ -9,15 +9,15 @@ description: Checking if Math.min.length property is defined and equals to 2
// CHECK#1
if (typeof Math.min !== "function") {
- $ERROR('#1: Math.min method is not defined');
+ $ERROR('#1: Math.min method is not defined');
}
// CHECK#2
if (typeof Math.min.length === "undefined") {
- $ERROR('#2: length property of Math.min method is undefined');
+ $ERROR('#2: length property of Math.min method is undefined');
}
// CHECK#3
if (Math.min.length !== 2) {
- $ERROR('#3: The length property of the Math.min method is not 2');
+ $ERROR('#3: The length property of the Math.min method is not 2');
}