diff --git a/integration-tests/contract-michelson-origination.spec.ts b/integration-tests/contract-michelson-origination.spec.ts index 468f5e8ff7..5542ea50d1 100644 --- a/integration-tests/contract-michelson-origination.spec.ts +++ b/integration-tests/contract-michelson-origination.spec.ts @@ -43,8 +43,8 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { done(); }); - it('no parser configures will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => { - // No parserProvider configured will use MichelCodecParser by dafault (the Michelson will be parsed to JSONMichelson) + it('no parser configured will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => { + // No parserProvider configured will use MichelCodecParser by default (the Michelson will be parsed to JSONMichelson) const op = await Tezos.contract.originate({ balance: "0", code: idMichelsonCode, diff --git a/integration-tests/wallet-michelson-origination.spec.ts b/integration-tests/wallet-michelson-origination.spec.ts index 7eab8a00fb..caf05f7fb2 100644 --- a/integration-tests/wallet-michelson-origination.spec.ts +++ b/integration-tests/wallet-michelson-origination.spec.ts @@ -63,8 +63,8 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { done(); }); - it('no parser configures will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => { - // No parserProvider configured will use MichelCodecParser by dafault (the Michelson will be parsed to JSONMichelson) + it('no parser configured will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => { + // No parserProvider configured will use MichelCodecParser by default (the Michelson will be parsed to JSONMichelson) const op = await Tezos.wallet.originate({ balance: "0", code: idMichelsonCode,