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