Skip to content

Commit

Permalink
ci(store): temp comment out logger to make ci passed
Browse files Browse the repository at this point in the history
  • Loading branch information
mjzk committed Jul 16, 2024
1 parent af9b395 commit cc922c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ mod unit_tests {

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_transaction_store_query_timestamp() -> eyre::Result<()> {
env_logger::Builder::new()
.target(env_logger::Target::Stdout)
.filter_module("solagg::store", log::LevelFilter::Trace)
.init();
// env_logger::Builder::new()
// .target(env_logger::Target::Stdout)
// .filter_module("solagg::store", log::LevelFilter::Trace)
// .init();
let mocked = true;
let tx_store = TransactionStore::new(mocked)?;
println!("tx_store.size:\n{:#?}", tx_store.size());
Expand Down

0 comments on commit cc922c6

Please sign in to comment.