Skip to content

Commit

Permalink
Tests: Remove allow(unused) labels
Browse files Browse the repository at this point in the history
Those are no longer necessary.
  • Loading branch information
Lorak-mmk committed Nov 20, 2024
1 parent d5b99ba commit a97a99b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion scylla/src/utils/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Query> + Send) -> Result<(), QueryError>;
Expand Down
1 change: 0 additions & 1 deletion scylla/tests/integration/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Query> + Send) -> Result<(), QueryError>;
Expand Down

0 comments on commit a97a99b

Please sign in to comment.