Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBM committed Feb 2, 2024
1 parent 37bbebb commit 8103652
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,11 +438,12 @@ fn change_queue_size() {

rsmq.create_queue("queue6", None, None, None).await.unwrap();

rsmq.set_queue_attributes("queue6", None, None, Some(-1)).await.unwrap();
rsmq.set_queue_attributes("queue6", None, None, Some(-1))
.await
.unwrap();

let attributes = rsmq.get_queue_attributes("queue6").await.unwrap();

assert_eq!(attributes.maxsize, -1);

})
}

0 comments on commit 8103652

Please sign in to comment.