Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
lwwmanning committed Sep 19, 2024
1 parent 2a9e32e commit a02f9ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vortex-array/src/encoding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ mod tests {
ids_set.extend(all_ids);
assert_eq!(ids_set.len(), all_ids.len()); // no duplicates
assert!(ids_set.iter().max().unwrap() <= &0x0400); // no ids are greater than 1024
for (i, id) in all_ids.iter().enumerate() { // monotonic with no gaps
for (i, id) in all_ids.iter().enumerate() {
// monotonic with no gaps
assert_eq!(i as u16, *id, "id at index {} is not equal to index", i);
}
}
Expand Down

0 comments on commit a02f9ba

Please sign in to comment.