Skip to content

Commit

Permalink
style: fix format.
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Oct 8, 2024
1 parent 32abd0a commit 088a42f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/src/re/bitmapset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ mod tests {
assert!(s.insert(10, 0));
assert!(s.insert(0, 0));
assert!(s.insert(2000, 0));

assert!(!s.insert(4, 0));
assert!(!s.insert(2, 0));
assert!(!s.insert(3, 0));
Expand All @@ -192,7 +192,7 @@ mod tests {

assert_eq!(
s.items,
vec![(4, 0), (2, 0), (3,0), (10, 0), (0, 0), (2000, 0), (4, 1)]
vec![(4, 0), (2, 0), (3, 0), (10, 0), (0, 0), (2000, 0), (4, 1)]
);

s.clear();
Expand All @@ -205,7 +205,7 @@ mod tests {
assert!(s.insert(10, 0));
assert!(s.insert(300, 0));
assert!(s.insert(250, 0));

assert_eq!(
s.items,
vec![(200, 0), (3, 0), (10, 0), (300, 0), (250, 0)]
Expand Down

0 comments on commit 088a42f

Please sign in to comment.