From 0428b51e356e2d6795fa2116a37baff2b3775bb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Lang=C3=B3?= Date: Tue, 17 Dec 2019 11:42:57 +0100 Subject: [PATCH] Uncomment some fixed test cases (#3452) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After #3440 the Symbol related test cases runs fine for Arrays, so the TODO had been resolved in that particular test file. JerryScript-DCO-1.0-Signed-off-by: László Langó lango@inf.u-szeged.hu --- tests/jerry/es2015/class-inheritance-builtin-array.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/jerry/es2015/class-inheritance-builtin-array.js b/tests/jerry/es2015/class-inheritance-builtin-array.js index 22aedf2a8..2aac4735c 100644 --- a/tests/jerry/es2015/class-inheritance-builtin-array.js +++ b/tests/jerry/es2015/class-inheritance-builtin-array.js @@ -47,7 +47,6 @@ assert (c.g () === 5); assert (c.h () === 5); -/* TODO: Enable these tests after Symbol has been implemented // Test built-in Array prototype methods var mapped = c.map ((x) => x * 2); isInstanceofArray (mapped); @@ -115,4 +114,3 @@ } catch (e) { assert (e instanceof TypeError); } -*/