diff --git a/test/Endian.test.js b/test/Endian.test.js index 1380323..8d328c8 100644 --- a/test/Endian.test.js +++ b/test/Endian.test.js @@ -2,8 +2,10 @@ const { expect } = require("chai") const { ethers } = require("hardhat") describe("Endian", function () { - const big = "0x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f" - const little = "0x1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100" + const big = + "0x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f" + const little = + "0x1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100" let endian diff --git a/test/examples.js b/test/examples.js index e12e81b..16a2cf3 100644 --- a/test/examples.js +++ b/test/examples.js @@ -41,8 +41,8 @@ const exampleRequest = async () => { const exampleProof = () => ({ a: { x: 1, y: 2 }, - b: { x: [3, 4], y: [5, 6]}, - c: { x: 7, y: 8 } + b: { x: [3, 4], y: [5, 6] }, + c: { x: 7, y: 8 }, }) module.exports = { exampleConfiguration, exampleRequest, exampleProof }