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); +