From b2a1f65c1e50c39cf66174632ab8024600800103 Mon Sep 17 00:00:00 2001 From: David Pacheco Date: Wed, 15 Sep 2021 15:57:11 -0700 Subject: [PATCH] clean up build warnings --- omicron-nexus/tests/test_disks.rs | 3 --- omicron-nexus/tests/test_instances.rs | 3 --- omicron-nexus/tests/test_oximeter.rs | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/omicron-nexus/tests/test_disks.rs b/omicron-nexus/tests/test_disks.rs index 16b4b6acc90..e05fe763c8c 100644 --- a/omicron-nexus/tests/test_disks.rs +++ b/omicron-nexus/tests/test_disks.rs @@ -32,9 +32,6 @@ use common::identity_eq; use common::resource_helpers::create_project; use common::test_setup; -#[macro_use] -extern crate slog; - /* * TODO-cleanup the mess of URLs used here and in test_instances.rs ought to * come from common code. diff --git a/omicron-nexus/tests/test_instances.rs b/omicron-nexus/tests/test_instances.rs index f7ae445df28..5daf194bca1 100644 --- a/omicron-nexus/tests/test_instances.rs +++ b/omicron-nexus/tests/test_instances.rs @@ -29,9 +29,6 @@ use common::identity_eq; use common::resource_helpers::create_project; use common::test_setup; -#[macro_use] -extern crate slog; - #[tokio::test] async fn test_instances() { let cptestctx = test_setup("test_instances").await; diff --git a/omicron-nexus/tests/test_oximeter.rs b/omicron-nexus/tests/test_oximeter.rs index ee1982d6de3..7c316f389fc 100644 --- a/omicron-nexus/tests/test_oximeter.rs +++ b/omicron-nexus/tests/test_oximeter.rs @@ -1,6 +1,6 @@ //! Integration tests for oximeter collectors and producers. -mod common; +pub mod common; use uuid::Uuid;