Skip to content

Commit

Permalink
Fix a mistake
Browse files Browse the repository at this point in the history
# Conflicts:
#	packages/chain-validator/src/feature.spec.ts
  • Loading branch information
Thunnini committed Jul 9, 2024
1 parent 3973f6c commit bed148c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/chain-validator/src/feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ const createMockServer = (
resp.writeHead(501);
resp.end();
}

if (req.url === "/ibc/apps/packetforward/v1/params") {
resp.writeHead(501);
resp.end();
}

if (req.url === "/feemarket/v1/params") {
resp.writeHead(501);
resp.end();
}
});

server.listen();
Expand Down Expand Up @@ -179,7 +189,7 @@ describe("The chain server supports all features(체인 서버가 모든 기능
"query:/cosmos/bank/v1beta1/spendable_balances",
]);

expect(getQueryCount!()).toEqual(3);
expect(getQueryCount!()).toEqual(4);
});

/**
Expand Down

0 comments on commit bed148c

Please sign in to comment.