From 324c18038bceee988f5c49e80e25dd9ea8811a89 Mon Sep 17 00:00:00 2001
From: Valerie R Young <valerie@bocoup.com>
Date: Tue, 13 Mar 2018 14:58:43 -0400
Subject: [PATCH] BigInt: fix input values to be type BigInt

---
 .../from/BigInt/custom-ctor-returns-smaller-instance-throws.js  | 2 +-
 .../from/BigInt/mapfn-abrupt-completion.js                      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js
index 8c2a128d0c..2726aac565 100644
--- a/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js
+++ b/test/built-ins/TypedArrayConstructors/from/BigInt/custom-ctor-returns-smaller-instance-throws.js
@@ -22,7 +22,7 @@ includes: [testBigIntTypedArray.js]
 features: [BigInt, Symbol.iterator, TypedArray]
 ---*/
 
-var sourceItor = [1, 2];
+var sourceItor = [1n, 2n];
 var sourceObj = {
   length: 2
 };
diff --git a/test/built-ins/TypedArrayConstructors/from/BigInt/mapfn-abrupt-completion.js b/test/built-ins/TypedArrayConstructors/from/BigInt/mapfn-abrupt-completion.js
index 4efbf68faa..82bdcadf3f 100644
--- a/test/built-ins/TypedArrayConstructors/from/BigInt/mapfn-abrupt-completion.js
+++ b/test/built-ins/TypedArrayConstructors/from/BigInt/mapfn-abrupt-completion.js
@@ -18,7 +18,7 @@ features: [BigInt, TypedArray]
 ---*/
 
 var source = {
-  "0": 42,
+  "0": 42n,
   length: 2
 };
 var mapfn = function() {
-- 
GitLab