Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix clippy in tests
Browse files Browse the repository at this point in the history
mateuszkj committed Sep 29, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 9bee83b commit bc4386f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/core/src/datasource/listing/table.rs
Original file line number Diff line number Diff line change
@@ -831,7 +831,7 @@ mod tests {
assert!(cache.get(&meta2).is_none());

// different file
let mut meta2 = meta.clone();
let mut meta2 = meta;
meta2.location = Path::from("test2");
assert!(cache.get(&meta2).is_none());
}

0 comments on commit bc4386f

Please sign in to comment.