From 329a5b0c95da23de6c39d78999cf2cb17c915173 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Thu, 24 Dec 2015 09:58:07 +0100 Subject: [PATCH] Remove a fat arrow from /dom/nodes/attributes.html --- tests/wpt/web-platform-tests/dom/nodes/attributes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/web-platform-tests/dom/nodes/attributes.html b/tests/wpt/web-platform-tests/dom/nodes/attributes.html index 76a501c37ca..97aef599fc9 100644 --- a/tests/wpt/web-platform-tests/dom/nodes/attributes.html +++ b/tests/wpt/web-platform-tests/dom/nodes/attributes.html @@ -585,7 +585,7 @@ function getEnumerableOwnProps1(obj) { function getEnumerableOwnProps2(obj) { return Object.getOwnPropertyNames(obj).filter( - (name) => Object.getOwnPropertyDescriptor(obj, name).enumerable) + function (name) { return Object.getOwnPropertyDescriptor(obj, name).enumerable; }) } test(function() {