From 83f074749023adf04c0e56ee0fe64ecd558bb854 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Wed, 8 Jul 2020 16:33:24 -0400 Subject: [PATCH] Remove straggler install_tracing() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was removed in the PR but the actual squashed commit still had it. 🤔 --- zebra-consensus/src/verify/block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-consensus/src/verify/block.rs b/zebra-consensus/src/verify/block.rs index 08f391ac..9a6ac53b 100644 --- a/zebra-consensus/src/verify/block.rs +++ b/zebra-consensus/src/verify/block.rs @@ -475,7 +475,7 @@ mod tests { #[tokio::test] #[spandoc::spandoc] async fn header_solution() -> Result<(), Report> { - install_tracing(); + zebra_test::init(); // Service variables let state_service = Box::new(zebra_state::in_memory::init());