Skip to content

Commit 0715498

Browse files
committed
fix test values
1 parent 98f5400 commit 0715498

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/testcases/run_in_band/dex_grpc.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ describe('Neutron / dex module (grpc contract)', () => {
760760
},
761761
},
762762
});
763-
expect(res.resp.taker_coin_out.amount).toBe('998');
763+
expect(res.resp.taker_coin_out.amount).toBe('999');
764764
expect(res.resp.maker_coin_out.amount).toBe('0');
765765
});
766766
test('SimulateCancelLimitOrder', async () => {
@@ -772,8 +772,8 @@ describe('Neutron / dex module (grpc contract)', () => {
772772
},
773773
},
774774
});
775-
expect(res.resp.taker_coin_out.amount).toBe('998');
776-
expect(res.resp.maker_coin_out.amount).toBe('998779');
775+
expect(res.resp.taker_coin_out.amount).toBe('999');
776+
expect(res.resp.maker_coin_out.amount).toBe('998778');
777777
});
778778
test('SimulateMultiHopSwap', async () => {
779779
const res = await neutronClient.queryContractSmart(contractAddress, {
@@ -803,7 +803,7 @@ describe('Neutron / dex module (grpc contract)', () => {
803803
},
804804
},
805805
});
806-
expect(res.resp.coin_out.amount).toBe('91');
806+
expect(res.resp.coin_out.amount).toBe('99');
807807
expect(res.resp.route.hops.length).toBe(10);
808808
});
809809
});

0 commit comments

Comments
 (0)