Skip to content

Commit a5406d3

Browse files
committed
fix lint
1 parent 9570368 commit a5406d3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

libdd-crashtracker/src/crash_info/telemetry.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,10 @@ mod tests {
460460
.unwrap()
461461
}
462462

463-
fn new_test_uploader_with_process_tags(seed: u64, process_tags: &str) -> TelemetryCrashUploader {
463+
fn new_test_uploader_with_process_tags(
464+
seed: u64,
465+
process_tags: &str,
466+
) -> TelemetryCrashUploader {
464467
let mut metadata = Metadata::test_instance(seed);
465468
metadata.tags.push(format!("process_tags:{process_tags}"));
466469
TelemetryCrashUploader::new(
@@ -499,10 +502,8 @@ mod tests {
499502
p
500503
};
501504
let seed = 1;
502-
let mut t = new_test_uploader_with_process_tags(
503-
seed,
504-
"entrypoint.name:cli,entrypoint.type:script",
505-
);
505+
let mut t =
506+
new_test_uploader_with_process_tags(seed, "entrypoint.name:cli,entrypoint.type:script");
506507

507508
t.cfg
508509
.set_host_from_url(&format!("file://{}", output_filename.to_str().unwrap()))

0 commit comments

Comments
 (0)