Skip to content

Commit 748e515

Browse files
fmt
1 parent e5d51d6 commit 748e515

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/requests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -440,14 +440,14 @@ pub struct QueueFederationParams<'a> {
440440
impl<'a> QueueFederationParams<'a> {
441441
pub fn new(queue: &'a str) -> Self {
442442
Self {
443-
queue: Some(queue),
443+
queue: Some(queue),
444444
consumer_tag: None,
445445
}
446446
}
447447

448448
pub fn new_with_consumer_tag(queue: &'a str, consumer_tag: &'a str) -> Self {
449449
Self {
450-
queue: Some(queue),
450+
queue: Some(queue),
451451
consumer_tag: Some(consumer_tag),
452452
}
453453
}

tests/blocking_queue_federation_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod test_helpers;
1818
use crate::test_helpers::{amqp_endpoint_with_vhost, endpoint, PASSWORD, USERNAME};
1919

2020
#[test]
21-
fn test_blocking_declare_a_federation_upstream_with_queue_federation_parameters () {
21+
fn test_blocking_declare_a_federation_upstream_with_queue_federation_parameters() {
2222
let endpoint = endpoint();
2323
let rc = Client::new(&endpoint, USERNAME, PASSWORD);
2424

0 commit comments

Comments
 (0)