Skip to content

Commit

Permalink
Update other integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
faust403 committed Nov 19, 2024
1 parent 3a24c4d commit 7ac13f2
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 42 deletions.
1 change: 0 additions & 1 deletion integration_tests/src/testcases/core-slashing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ describe('Core Slashing', () => {
unbond_batch_switch_time: 60,
unbonding_safe_period: 10,
unbonding_period: 360,
bond_limit: '0',
icq_update_delay: 5,
},
native_bond_params: {
Expand Down
5 changes: 0 additions & 5 deletions integration_tests/src/testcases/core.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1202,11 +1202,6 @@ describe('Core', () => {
});
await checkExchangeRate(context);
});
it('verify bonded amount', async () => {
const { coreContractClient } = context;
const bonded = await coreContractClient.queryTotalBonded();
expect(bonded).toEqual('500000');
});
it('bond with receiver', async () => {
const {
coreContractClient,
Expand Down
34 changes: 0 additions & 34 deletions integration_tests/src/testcases/initia.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,6 @@ describe('Core', () => {
unbond_batch_switch_time: 60,
unbonding_safe_period: 10,
unbonding_period: 360,
bond_limit: '0',
icq_update_delay: 5,
},
native_bond_params: {
Expand Down Expand Up @@ -947,39 +946,6 @@ describe('Core', () => {
await checkExchangeRate(context);
});

it('verify bonded amount', async () => {
const { coreContractClient } = context;
const bonded = await coreContractClient.queryTotalBonded();
expect(bonded).toEqual('500000');
});

it('reset bonded amount', async () => {
const { coreContractClient, neutronUserAddress } = context;
const res = await context.factoryContractClient.adminExecute(
neutronUserAddress,
{
msgs: [
{
wasm: {
execute: {
contract_addr: context.coreContractClient.contractAddress,
msg: Buffer.from(
JSON.stringify({
reset_bonded_amount: {},
}),
).toString('base64'),
funds: [],
},
},
},
],
},
1.5,
);
expect(res.transactionHash).toHaveLength(64);
const bonded = await coreContractClient.queryTotalBonded();
expect(bonded).toEqual('0');
});
it('bond with receiver', async () => {
const {
coreContractClient,
Expand Down
1 change: 0 additions & 1 deletion integration_tests/src/testcases/locator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ describe('Locator', () => {
lsm_redeem_threshold: 2,
lsm_min_bond_amount: '1000',
lsm_redeem_max_interval: 60_000,
bond_limit: '100000',
min_stake_amount: '2',
icq_update_delay: 5,
},
Expand Down
1 change: 0 additions & 1 deletion integration_tests/src/testcases/mirror.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ describe('Mirror', () => {
unbond_batch_switch_time: 60,
unbonding_safe_period: 10,
unbonding_period: 360,
bond_limit: '0',
icq_update_delay: 5,
},
native_bond_params: {
Expand Down

0 comments on commit 7ac13f2

Please sign in to comment.