From 38ecb16a77e5f1e9796097886ee380741ff7142a 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 0f363e964..7e258c352 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 35277b2e6..07d207974 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>;