Skip to content

Commit

Permalink
Fix a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Jun 21, 2024
1 parent 1fade0c commit 02695f1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/chain-validator/src/feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ const createMockServer = (
resp.writeHead(501);
resp.end();
}

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

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

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

/**
Expand Down

0 comments on commit 02695f1

Please sign in to comment.