Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki committed Feb 1, 2024
1 parent f5a4c4a commit 0d65172
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pallets/services-payment/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ fn credits_should_be_substracted_from_tank_if_no_free_credits() {
}

#[test]
fn credits_should_be_substracted_from_tank_even_if_it_involves_death() {
fn credits_should_not_be_substracted_from_tank_if_it_involves_death() {
ExtBuilder::default()
.with_balances([(ALICE, 2_000)].into())
.build()
Expand All @@ -235,7 +235,7 @@ fn credits_should_be_substracted_from_tank_even_if_it_involves_death() {

assert_eq!(
Balances::balance(&crate::Pallet::<Test>::parachain_tank(1.into())),
0u128
100u128
);
});
}
Expand Down

0 comments on commit 0d65172

Please sign in to comment.