From a97a99b3d57789436a0810fde4d0c87ef310c027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Bary=C5=82a?= Date: Wed, 20 Nov 2024 18:38:52 +0100 Subject: [PATCH] Tests: Remove allow(unused) labels Those are no longer necessary. --- scylla/src/utils/test_utils.rs | 1 - scylla/tests/integration/utils.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/scylla/src/utils/test_utils.rs b/scylla/src/utils/test_utils.rs index c4bfda063..98a83f87e 100644 --- a/scylla/src/utils/test_utils.rs +++ b/scylla/src/utils/test_utils.rs @@ -153,7 +153,6 @@ fn apply_ddl_lbp(query: &mut Query) { // This is just to make it easier to call the above function: // we'll be able to do session.ddl(...) instead of perform_ddl(&session, ...) // or something like that. -#[allow(unused)] #[async_trait::async_trait] pub(crate) trait PerformDDL { async fn ddl(&self, query: impl Into + Send) -> Result<(), QueryError>; diff --git a/scylla/tests/integration/utils.rs b/scylla/tests/integration/utils.rs index 436f22bcc..270416354 100644 --- a/scylla/tests/integration/utils.rs +++ b/scylla/tests/integration/utils.rs @@ -219,7 +219,6 @@ fn apply_ddl_lbp(query: &mut Query) { // This is just to make it easier to call the above function: // we'll be able to do session.ddl(...) instead of perform_ddl(&session, ...) // or something like that. -#[allow(unused)] #[async_trait::async_trait] pub(crate) trait PerformDDL { async fn ddl(&self, query: impl Into + Send) -> Result<(), QueryError>;