Skip to content

Commit e1ceb70

Browse files
committed
Fix formatting
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 259fcb3 commit e1ceb70

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

rclrs/src/parameter/service.rs

+6-10
Original file line numberDiff line numberDiff line change
@@ -643,11 +643,9 @@ mod tests {
643643
},
644644
)
645645
.unwrap();
646-
try_until_timeout(|| {
647-
*client_finished.read().unwrap()
648-
})
649-
.await
650-
.unwrap();
646+
try_until_timeout(|| *client_finished.read().unwrap())
647+
.await
648+
.unwrap();
651649

652650
// Set a mix of existing, non existing, dynamic and out of range parameters
653651
let bool_parameter = RmwParameter {
@@ -792,11 +790,9 @@ mod tests {
792790
},
793791
)
794792
.unwrap();
795-
try_until_timeout(|| {
796-
*client_finished.read().unwrap()
797-
})
798-
.await
799-
.unwrap();
793+
try_until_timeout(|| *client_finished.read().unwrap())
794+
.await
795+
.unwrap();
800796
*done.write().unwrap() = true;
801797
});
802798

0 commit comments

Comments
 (0)