Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 4, 2023
1 parent 447f846 commit 17685c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tree/src/implementations/impl_morton.rs
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ mod test {
}
}
false => {
let x = vec![
let x = [
a.anchor[0] ^ b.anchor[0],
a.anchor[1] ^ b.anchor[1],
a.anchor[2] ^ b.anchor[2],
Expand Down Expand Up @@ -1526,8 +1526,8 @@ mod test {
let end_val = vec![b];
complete = start_val
.into_iter()
.chain(complete.into_iter())
.chain(end_val.into_iter())
.chain(complete)
.chain(end_val)
.collect();
let mut tree = MortonKeys {
keys: complete,
Expand Down

0 comments on commit 17685c3

Please sign in to comment.