We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1530fca commit 8660174Copy full SHA for 8660174
src/version/compare.rs
@@ -202,7 +202,10 @@ mod tests {
202
assert_eq!(classify_bump("7.3.0", "7.3.1"), BumpKind::Patch);
203
// 4-component versions (e.g. pandas-stubs 3.0.0 → 3.0.0.260204)
204
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);
+ assert_eq!(
206
+ classify_bump("3.0.0.250204", "3.0.0.260204"),
207
+ BumpKind::Patch
208
+ );
209
}
210
211
#[tokio::test]
0 commit comments