From b7ad84c76a2638bcbb9d377d04527dad9c9adb48 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Wed, 15 Oct 2014 20:32:19 +0400 Subject: [PATCH] Fixing a test from internal test suite. --- tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-007.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-007.js b/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-007.js index 0bcfb3c95..18d0fea50 100644 --- a/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-007.js +++ b/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-007.js @@ -24,4 +24,9 @@ function Animal(name) var animal = new Animal("animal"); var bird = new Animal("bird"); -assert(animal.canFly == animal.name); + +assert(animal.canWalk === true); +assert(bird.canWalk === true); +assert(animal.canFly === undefined); +assert(bird.canFly === true); +