summaryrefslogtreecommitdiff
path: root/tests/support/common.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/support/common.rs')
-rw-r--r--tests/support/common.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/support/common.rs b/tests/support/common.rs
deleted file mode 100644
index 8db5c52b..00000000
--- a/tests/support/common.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use std::sync::Once;
-
-static INIT: Once = Once::new();
-
-pub fn setup() {
- INIT.call_once(|| {
- tracing_subscriber::fmt()
- .with_test_writer()
- .with_max_level(tracing::Level::WARN)
- .init();
- });
-}