Skip to content

Commit ffd8c6e

Browse files
committed
fix
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 830cd1e commit ffd8c6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vortex-array/src/arrays/assertions.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#[macro_export]
55
macro_rules! assert_arrays_eq {
66
($left:expr, $right:expr) => {{
7-
let left = $left.clone();
8-
let right = $right.clone();
7+
let left = $left.clone();
8+
let right = $right.clone();
99
if left.dtype() != right.dtype() {
1010
panic!(
1111
"assertion left == right failed: arrays differ in type: {} != {}.\n left: {}\n right: {}",

0 commit comments

Comments
 (0)