diff --git a/harness/testBigIntTypedArray.js b/harness/testBigIntTypedArray.js
index 90bb3aee45e91c125387de74de788f8b535df17d..4b0e332d856b1c101cba98586eb51fbbc1641fa6 100644
--- a/harness/testBigIntTypedArray.js
+++ b/harness/testBigIntTypedArray.js
@@ -17,7 +17,7 @@ var BigIntTypedArrayConstructors = [
  * The %TypedArray% intrinsic constructor function.
  */
 var TypedArray = Object.getPrototypeOf(Int8Array);
-  
+
 function convertToBigInt(x) {
   return (Array.isArray(x)) ? x.map(convertToBigInt) : BigInt(x);
 }
@@ -74,4 +74,3 @@ function testBigIntTypedArrayConversions(byteConversionValues, fn) {
     });
   });
 }
-  
\ No newline at end of file