Skip to content

Commit

Permalink
remove dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
nanocryk committed Oct 30, 2023
1 parent 3fe5727 commit 6ef038b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/dancebox/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3796,7 +3796,7 @@ fn test_reward_to_invulnerable() {
let orchestrator_rewards = all_rewards / 3;
assert_eq!(
orchestrator_rewards,
dbg!(balance_after - balance_before),
balance_after - balance_before,
"alice should get the correct reward portion"
);
});
Expand Down Expand Up @@ -3855,7 +3855,7 @@ fn test_reward_to_invulnerable_with_key_change() {
let orchestrator_rewards = all_rewards / 3;
assert_eq!(
orchestrator_rewards,
dbg!(balance_after - balance_before),
balance_after - balance_before,
"alice should get the correct reward portion"
);
});
Expand Down

0 comments on commit 6ef038b

Please sign in to comment.