Skip to content

Commit c3b8923

Browse files
committed
chore: fix clippy
1 parent 791dbb7 commit c3b8923

File tree

1 file changed

+2
-2
lines changed
  • src/datatypes/src/vectors/operations

1 file changed

+2
-2
lines changed

src/datatypes/src/vectors/operations/take.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ mod tests {
146146
#[test]
147147
#[should_panic]
148148
fn test_take_out_of_index() {
149-
let v = Int32Vector::from_slice(&[1, 2, 3, 4, 5]);
150-
let indies = UInt32Vector::from_slice(&[1, 5, 6]);
149+
let v = Int32Vector::from_slice([1, 2, 3, 4, 5]);
150+
let indies = UInt32Vector::from_slice([1, 5, 6]);
151151
v.take(&indies).unwrap();
152152
}
153153

0 commit comments

Comments
 (0)