diff --git a/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-005.js b/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-005.js index ccc585ede..658705584 100644 --- a/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-005.js +++ b/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-005.js @@ -13,4 +13,4 @@ // limitations under the License. var x = 1; -assert((x - 1 !== 0) || (1 - x !== 0)) \ No newline at end of file +assert(!((x - 1 !== 0) || (1 - x !== 0))) diff --git a/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-008.js b/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-008.js index 4119ef671..a5a9c75c9 100644 --- a/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-008.js +++ b/tests/jerry-test-suite/11/11.06/11.06.02/11.06.02-008.js @@ -20,4 +20,4 @@ object = { return 0; } } -assert((object - 1 !== 0) || (1 - object !== 0)) \ No newline at end of file +assert(!((object - 1 !== 0) || (1 - object !== 0)));