Skip to content

Commit

Permalink
fix: new one
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Feb 14, 2024
1 parent 8523fac commit f5d3549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/integration-tests/src/entities.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export enum Buffer {
greeterL2 = "./buffer/greeterL2.txt",
greeterL2VerifiedSepolia = "./buffer/sepoliaGreeterVerified.txt",
executeGreeterTx = "./buffer/executeGreeterTx.txt",
NFTtoL1 = "./buffer/NFTtoL1.txt",
NFTtoL2 = "./buffer/NFTtoL2.txt",
Expand Down
4 changes: 2 additions & 2 deletions packages/integration-tests/tests/api/contracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("API module: Contract", () => {
//id1695
it("Verify /api?module=contract&action=getabi response", async () => {
await helper.retryTestAction(async () => {
const greeterContract = await helper.getStringFromFile(bufferFile + Buffer.greeterL2VerifiedSepolia);
const greeterContract = "0xB0927430b017860BB0Af99f192Aa4a79D74f75bB";
apiRoute = `/api?module=contract&action=getabi&address=${greeterContract}`;
response = await helper.performGETrequest(apiRoute, "sepolia");

Expand All @@ -54,7 +54,7 @@ describe("API module: Contract", () => {
//id1802
it("Verify /api?module=contract&action=getsourcecode response", async () => {
await helper.retryTestAction(async () => {
const greeterContract = await helper.getStringFromFile(bufferFile + Buffer.greeterL2VerifiedSepolia);
const greeterContract = "0xB0927430b017860BB0Af99f192Aa4a79D74f75bB";
apiRoute = `/api?module=contract&action=getsourcecode&address=${greeterContract}`;
response = await helper.performGETrequest(apiRoute, "sepolia");

Expand Down

0 comments on commit f5d3549

Please sign in to comment.