Skip to content

Commit 8660174

Browse files
committed
style: apply cargo formatting
1 parent 1530fca commit 8660174

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/version/compare.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,10 @@ mod tests {
202202
assert_eq!(classify_bump("7.3.0", "7.3.1"), BumpKind::Patch);
203203
// 4-component versions (e.g. pandas-stubs 3.0.0 → 3.0.0.260204)
204204
assert_eq!(classify_bump("3.0.0", "3.0.0.260204"), BumpKind::Patch);
205-
assert_eq!(classify_bump("3.0.0.250204", "3.0.0.260204"), BumpKind::Patch);
205+
assert_eq!(
206+
classify_bump("3.0.0.250204", "3.0.0.260204"),
207+
BumpKind::Patch
208+
);
206209
}
207210

208211
#[tokio::test]

0 commit comments

Comments
 (0)