Skip to content

Commit

Permalink
assert info
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-r-earp committed Nov 4, 2023
1 parent e7557ae commit cd09a3c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,10 @@ fn buffer_bitcast<X: Scalar, Y: Scalar>(device: Device) {
#[cfg(miri)]
let _ = (bytemuck_result, result);
#[cfg(not(miri))]
assert_eq!(result, bytemuck_result);
assert_eq!(
result, bytemuck_result,
"{i}: {result:?}, {bytemuck_result:?}"
);
}
}
}
Expand Down

0 comments on commit cd09a3c

Please sign in to comment.