From e0d8f66a2b43e34fd6e6d7bd576b3b8da406bbca Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 18 Sep 2025 20:34:35 +0100 Subject: [PATCH] Add missing include to WeakMap.prototype.getOrInsertComputed() test --- .../getOrInsertComputed/throw-if-key-cannot-be-held-weakly.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/built-ins/WeakMap/prototype/getOrInsertComputed/throw-if-key-cannot-be-held-weakly.js b/test/built-ins/WeakMap/prototype/getOrInsertComputed/throw-if-key-cannot-be-held-weakly.js index 8fe94a2792..28388f30be 100644 --- a/test/built-ins/WeakMap/prototype/getOrInsertComputed/throw-if-key-cannot-be-held-weakly.js +++ b/test/built-ins/WeakMap/prototype/getOrInsertComputed/throw-if-key-cannot-be-held-weakly.js @@ -11,6 +11,7 @@ info: | ... 4. If CanBeHeldWeakly(_key_) is *false*, throw a *TypeError* exception. ... +includes: [compareArray.js] features: [Symbol, WeakMap, upsert] ---*/