Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
emesare committed Oct 30, 2024
1 parent 91b35e8 commit 9f525e0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions rust/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ mod tests {
comp_ty.guid = guid.into(); // Adjust the guid for testing.
comp_ty
}

#[test]
fn test_merge() {
let first_data = Data::new(
Expand All @@ -168,7 +168,12 @@ mod tests {
);

let merged_data = Data::merge(&[first_data, second_data]);
assert_eq!(merged_data.functions.len(), 3, "{:#?}", merged_data.functions);
assert_eq!(
merged_data.functions.len(),
3,
"{:#?}",
merged_data.functions
);
assert_eq!(merged_data.types.len(), 3, "{:#?}", merged_data.types);
}
}

0 comments on commit 9f525e0

Please sign in to comment.