Skip to content

Commit

Permalink
Fix 'cargo clippy'
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 17, 2025
1 parent 3da8f02 commit 99424a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/async_definitions_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ async fn test_asyncexport_definitions_as_data() {
q_name
);

let _ = rc.delete_exchange("/", x_name, false);
let _ = rc.delete_policy("/", qq_pol_name);
let _ = rc.delete_exchange("/", x_name, false).await;
let _ = rc.delete_policy("/", qq_pol_name).await;
}

#[tokio::test]
Expand Down

0 comments on commit 99424a3

Please sign in to comment.