Skip to content

Commit

Permalink
Applying clippy suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
rguerreiromsft committed Feb 20, 2023
1 parent 44f0f55 commit 77213bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arrow-json/src/raw/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,10 @@ mod tests {
assert_eq!(col1.values(), &[2, 20, 1, 0]);

let col2 = as_boolean_array(batch.column(2));
assert_eq!(col2.value(0), false);
assert_eq!(col2.value(1), true);
assert_eq!(col2.value(2), false);
assert_eq!(col2.value(3), true);
assert!(!col2.value(0));
assert!(col2.value(1));
assert!(!col2.value(2));
assert!(col2.value(3));
}

#[test]
Expand Down

0 comments on commit 77213bd

Please sign in to comment.