Skip to content

Commit

Permalink
clippy... again
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen committed Jun 6, 2024
1 parent 3ad1dd0 commit 4d80afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/duckdb/src/vtab/arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ mod test {
assert_eq!(rb.num_columns(), 1);
let column = rb.column(0).as_any().downcast_ref::<Decimal128Array>().unwrap();
assert_eq!(column.len(), 1);
assert_eq!(column.value(0), i128::from(300_00));
assert_eq!(column.value(0), i128::from(30000));
Ok(())
}

Expand Down

0 comments on commit 4d80afe

Please sign in to comment.