Skip to content

Commit

Permalink
test parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
swelf19 committed Nov 13, 2024
1 parent 93b80c1 commit 5ae3bc3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/testcases/run_in_band/chain_manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ describe('Neutron / Chain Manager', () => {
const timelockedProp = await subdaoMember1.supportAndExecuteProposal(
proposalId,
);

expect(timelockedProp.id).toEqual(proposalId);
expect(timelockedProp.status).toEqual('timelocked');
expect(timelockedProp.msgs).toHaveLength(1);
Expand Down Expand Up @@ -365,7 +364,9 @@ describe('Neutron / Chain Manager', () => {
describe('ALLOW_ONLY: change DEX parameters', () => {
let proposalId: number;
const newParams = {
fee_tiers: ['1', '2', '99'],
// types mixed on purpose, to check contract parser.
// Numeric types in neutron-std can be deserialized from both number and string
fee_tiers: ['1', '2', 99],
paused: true,
max_jits_per_block: 11,
good_til_purge_allowance: 50000,
Expand Down

0 comments on commit 5ae3bc3

Please sign in to comment.