Fix tests from jerry-test-suite.

This commit is contained in:
Ilmir Usmanov
2014-10-16 18:03:35 +04:00
parent 2637911b3e
commit 2a5cbe5975
30 changed files with 35 additions and 31 deletions
+1 -1
View File
@@ -14,4 +14,4 @@
var a = true;
var b = false;
assert((a && b) === true)
assert(!((a && b) === true))
+1 -1
View File
@@ -14,4 +14,4 @@
var a = false;
var b = false;
assert((a && b) === true)
assert(!((a && b) === true))
+1 -1
View File
@@ -14,4 +14,4 @@
var a = "not empty string"; // will be converted to true
var b = new Object();
assert((a && b) !== b)
assert(!((a && b) !== b))
+1 -1
View File
@@ -14,4 +14,4 @@
var a = ""; // empty string - false
var b = new Object();
assert((a && b) !== a)
assert(!((a && b) !== a))