Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jul 1, 2021
1 parent fe7258e commit 7acd3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/datatypes/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ mod tests {
// test that we assert the input type
let c_schema = FFI_ArrowSchema::try_from(&DataType::Float64)?;
let result = Schema::try_from(&c_schema);
assert_eq!(result.is_err(), true);
assert!(result.is_err());
Ok(())
}
}

0 comments on commit 7acd3a5

Please sign in to comment.