Skip to content

Commit

Permalink
increase passed blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Jun 5, 2024
1 parent fb52bc4 commit 988fcbb
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions runtime/integration-tests/src/generic/cases/liquidity_pools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4579,7 +4579,7 @@ mod development {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.sibling_state(|| {
let current_balance =
Expand Down Expand Up @@ -4667,7 +4667,7 @@ mod development {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state(|| {
// Verify that Charlie's balance equals the amount transferred - fee
Expand Down Expand Up @@ -5381,7 +5381,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.sibling_state_mut(|| {
let current_balance =
Expand Down Expand Up @@ -5463,7 +5463,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
// Verify that Keyring::Alice now has initial balance + amount transferred - fee
Expand Down Expand Up @@ -5557,7 +5557,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
// Verify that Keyring::Bob now has initial balance + amount transferred - fee
Expand Down Expand Up @@ -5626,7 +5626,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.parachain_state(|| {
assert_eq!(
Expand Down Expand Up @@ -5684,7 +5684,7 @@ mod altair {
));
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.relay_state_mut(|| {
assert_eq!(
Expand Down Expand Up @@ -5782,7 +5782,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
let bob_balance =
Expand Down Expand Up @@ -5896,7 +5896,7 @@ mod altair {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
let bob_balance =
Expand Down Expand Up @@ -6425,7 +6425,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(3));

env.parachain_state(|| {
assert_eq!(
Expand Down Expand Up @@ -7453,7 +7453,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.relay_state_mut(|| {
assert_eq!(
Expand Down Expand Up @@ -7561,7 +7561,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.sibling_state_mut(|| {
let current_balance =
Expand Down Expand Up @@ -7644,7 +7644,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
// Verify that Keyring::Alice now has initial balance + amount transferred - fee
Expand Down Expand Up @@ -7738,7 +7738,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
// Verify that Keyring::Bob now has initial balance + amount transferred - fee
Expand Down Expand Up @@ -7788,7 +7788,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(1));
env.pass(Blocks::ByNumber(2));

env.relay_state_mut(|| {
assert_eq!(
Expand Down Expand Up @@ -7887,7 +7887,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
let bob_balance =
Expand Down Expand Up @@ -7999,7 +7999,7 @@ mod centrifuge {
);
});

env.pass(Blocks::ByNumber(2));
env.pass(Blocks::ByNumber(3));

env.parachain_state_mut(|| {
let bob_balance =
Expand Down

0 comments on commit 988fcbb

Please sign in to comment.