Skip to content

Commit

Permalink
clippy again
Browse files Browse the repository at this point in the history
  • Loading branch information
albertlockett committed Aug 2, 2024
1 parent 5d3510f commit 35e3862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/lance-encoding/src/encodings/physical/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,15 +667,15 @@ pub(crate) mod tests {
DataType::Int64,
Box::new(
DistributionArrayGeneratorProvider::<Int64Type, Uniform<i64>>::new(
Uniform::new(-1 * (5 << 42), 6 << 42),
Uniform::new(-(5 << 42), 6 << 42),
),
),
),
(
DataType::Int32,
Box::new(
DistributionArrayGeneratorProvider::<Int32Type, Uniform<i32>>::new(
Uniform::new(-1 * (5 << 7), 6 << 7),
Uniform::new(-(5 << 7), 6 << 7),
),
),
),
Expand Down

0 comments on commit 35e3862

Please sign in to comment.