Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
parthchandra committed Feb 22, 2025
1 parent e622b22 commit f44e520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/core/src/parquet/parquet_exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ mod tests {
let s3_url = "s3a://test_bucket/comet/spark-warehouse/part-00000.snappy.parquet";
let hdfs_url = "hdfs://localhost:8020/comet/spark-warehouse/part-00000.snappy.parquet";

let all_urls = vec![local_file_system_url, s3_url, hdfs_url];
let all_urls = [local_file_system_url, s3_url, hdfs_url];
let expected: Vec<Result<(ObjectStoreUrl, Path), ExecutionError>> = vec![
Ok((
ObjectStoreUrl::parse("file://").unwrap(),
Expand Down

0 comments on commit f44e520

Please sign in to comment.