From 781388bddfe3791f36cc397bee9b6f5f7692e095 Mon Sep 17 00:00:00 2001 From: Josh Wolfe Date: Thu, 21 Sep 2017 11:42:23 -0700 Subject: [PATCH] fix copypaste error --- test/built-ins/BigInt/asUintN/bits-toindex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/built-ins/BigInt/asUintN/bits-toindex.js b/test/built-ins/BigInt/asUintN/bits-toindex.js index 2ef49340ca..0d999c242e 100644 --- a/test/built-ins/BigInt/asUintN/bits-toindex.js +++ b/test/built-ins/BigInt/asUintN/bits-toindex.js @@ -17,7 +17,7 @@ testCoercibleToIndexZero(function(zero) { }); testCoercibleToIndexOne(function(one) { - assert.sameValue(BigInt.asUintN(one, 1n), 0n); + assert.sameValue(BigInt.asUintN(one, 1n), 1n); }); testCoercibleToIndexFromIndex(3, function(three) {