Skip to content

Commit

Permalink
fix(test): enable logging for gossip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and joshuef committed Oct 19, 2023
1 parent 6adc3d0 commit e050c49
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sn_node/tests/nodes_rewards.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ async fn nodes_rewards_for_storing_registers() -> Result<()> {

#[tokio::test]
async fn nodes_rewards_for_chunks_notifs_over_gossipsub() -> Result<()> {
let _log_guards = init_logging_single_threaded_tokio("nodes_rewards");

let paying_wallet_balance = 10_000_000_111_000;
let paying_wallet_dir = TempDir::new()?;
let chunks_dir = TempDir::new()?;
Expand Down Expand Up @@ -126,6 +128,8 @@ async fn nodes_rewards_for_chunks_notifs_over_gossipsub() -> Result<()> {

#[tokio::test]
async fn nodes_rewards_for_register_notifs_over_gossipsub() -> Result<()> {
let _log_guards = init_logging_single_threaded_tokio("nodes_rewards");

let paying_wallet_balance = 10_000_000_222_000;
let paying_wallet_dir = TempDir::new()?;

Expand Down

0 comments on commit e050c49

Please sign in to comment.