From 0ece3bfa863c3ab55ba3d1a07007651a75c951e3 Mon Sep 17 00:00:00 2001 From: XadillaX Date: Tue, 11 Jan 2022 13:09:52 +0800 Subject: [PATCH] test: remove an unnecessary `undefined` in wpt --- test/common/wpt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/wpt.js b/test/common/wpt.js index 2a772f6f0fa8b1..2615a9d7e66e41 100644 --- a/test/common/wpt.js +++ b/test/common/wpt.js @@ -78,7 +78,7 @@ class ResourceLoader { } class StatusRule { - constructor(key, value, pattern = undefined) { + constructor(key, value, pattern) { this.key = key; this.requires = value.requires || []; this.fail = value.fail;