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>;