From 7990d511728e8810c853253588c78cc28f2df82d Mon Sep 17 00:00:00 2001 From: kgrofelnik Date: Thu, 28 Mar 2024 08:14:45 +0100 Subject: [PATCH] Fixes tests --- contracts/test/ChatGpt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/test/ChatGpt.ts b/contracts/test/ChatGpt.ts index 208d0b8..5016064 100644 --- a/contracts/test/ChatGpt.ts +++ b/contracts/test/ChatGpt.ts @@ -15,7 +15,7 @@ describe("ChatGpt", function () { const oracle = await Oracle.deploy(); const ChatGpt = await ethers.getContractFactory("ChatGpt"); - const chatGpt = await ChatGpt.deploy("0x0000000000000000000000000000000000000000"); + const chatGpt = await ChatGpt.deploy("0x0000000000000000000000000000000000000000", ""); return {chatGpt, oracle, owner, allSigners}; }