File tree 1 file changed +2
-5
lines changed
webrtc-audio-processing-sys/src
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ mod tests {
233
233
fn test_config_bindings_coverage ( ) {
234
234
use std:: collections:: HashSet ;
235
235
236
- // Helper to normalize field names into groups
236
+ // Helper to normalize field names into groups - very ugly
237
237
fn normalize_group_name ( field : & str ) -> Option < String > {
238
238
let field = field. trim_matches ( |c : char | c == '{' || c == '}' || c == ',' || c == ' ' ) ;
239
239
if field. is_empty ( )
@@ -243,6 +243,7 @@ mod tests {
243
243
}
244
244
245
245
// Handle special cases and normalize the field name
246
+ // There might be some easier way to do this.
246
247
let group = if field. contains ( "echo_audibility" ) {
247
248
"echo_audibility"
248
249
} else if field. contains ( "render_levels" ) {
@@ -278,10 +279,6 @@ mod tests {
278
279
}
279
280
}
280
281
281
- // Debug output
282
- println ! ( "Debug representation:\n {:#?}" , config) ;
283
- println ! ( "Found groups: {:?}" , found_groups) ;
284
-
285
282
// Define expected groups based on C++ header
286
283
let expected_groups = [
287
284
"buffering" ,
You can’t perform that action at this time.
0 commit comments