Skip to content

Commit

Permalink
chore(deps): bump crate-ci/typos from 1.27.3 to 1.28.1 (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanc-n authored Dec 9, 2024
1 parent 3b71074 commit 3216904
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@v1.27.3
uses: crate-ci/typos@v1.28.1
6 changes: 3 additions & 3 deletions crates/iceberg/src/transform/truncate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -712,11 +712,11 @@ mod test {
);

// test decimal
let mut buidler = PrimitiveBuilder::<Decimal128Type>::new()
let mut builder = PrimitiveBuilder::<Decimal128Type>::new()
.with_precision_and_scale(20, 2)
.unwrap();
buidler.append_value(1065);
let input = Arc::new(buidler.finish());
builder.append_value(1065);
let input = Arc::new(builder.finish());
let res = super::Truncate::new(50).transform(input).unwrap();
assert_eq!(
res.as_any()
Expand Down

0 comments on commit 3216904

Please sign in to comment.