Skip to content

Commit

Permalink
Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrofelnik committed Mar 28, 2024
1 parent 49d4bd5 commit 7990d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/test/ChatGpt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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};
}
Expand Down

0 comments on commit 7990d51

Please sign in to comment.