diff --git a/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-008.js b/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-008.js index d332c7edf..2660b9e57 100644 --- a/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-008.js +++ b/tests/jerry-test-suite/11/11.02/11.02.02/11.02.02-008.js @@ -18,4 +18,6 @@ function Animal(name) this.canWalk = true } +var animal = new Animal(); + assert(animal.canWalk);