From 5b5486046fe312fefee8fa93fde183658da18851 Mon Sep 17 00:00:00 2001 From: Chris Czub Date: Fri, 12 Apr 2024 16:59:41 -0400 Subject: [PATCH] Cleanup --- crates/core/component/dex/src/component/tests.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/crates/core/component/dex/src/component/tests.rs b/crates/core/component/dex/src/component/tests.rs index 928edc040e..5b16b09418 100644 --- a/crates/core/component/dex/src/component/tests.rs +++ b/crates/core/component/dex/src/component/tests.rs @@ -964,20 +964,6 @@ async fn reproduce_arbitrage_loop_testnet_53() -> anyhow::Result<()> { /// the amount of A purchaseable with the candidate assets, i.e. the amount of /// A in the reserves for any A <-> * positions. async fn check_routable_asset_ordering() -> anyhow::Result<()> { - tracing_subscriber::fmt() - .with_ansi(std::io::IsTerminal::is_terminal(&std::io::stdout())) - .with_env_filter( - tracing_subscriber::EnvFilter::from_default_env() - // Without explicitly disabling the `r1cs` target, the ZK proof implementations - // will spend an enormous amount of CPU and memory building useless tracing output. - .add_directive( - "r1cs=off" - .parse() - .expect("rics=off is a valid filter directive"), - ), - ) - .with_writer(std::io::stderr) - .init(); let storage = TempStorage::new().await?.apply_minimal_genesis().await?; let mut state = Arc::new(StateDelta::new(storage.latest_snapshot())); let mut state_tx = state.try_begin_transaction().unwrap();