We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259fcb3 commit e1ceb70Copy full SHA for e1ceb70
rclrs/src/parameter/service.rs
@@ -643,11 +643,9 @@ mod tests {
643
},
644
)
645
.unwrap();
646
- try_until_timeout(|| {
647
- *client_finished.read().unwrap()
648
- })
649
- .await
650
- .unwrap();
+ try_until_timeout(|| *client_finished.read().unwrap())
+ .await
+ .unwrap();
651
652
// Set a mix of existing, non existing, dynamic and out of range parameters
653
let bool_parameter = RmwParameter {
@@ -792,11 +790,9 @@ mod tests {
792
790
793
791
794
795
796
797
798
799
800
*done.write().unwrap() = true;
801
});
802
0 commit comments