From c1c54803e49201e0218199f7d0f232e4d0eceff6 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Sat, 6 Jun 2026 15:54:54 -0400 Subject: [PATCH] Move miri ignore to the right place --- src/impl_methods.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/impl_methods.rs b/src/impl_methods.rs index 9187beb6b..8046f4d1f 100644 --- a/src/impl_methods.rs +++ b/src/impl_methods.rs @@ -3620,9 +3620,9 @@ mod tests } #[cfg(test)] -#[cfg_attr(miri, ignore)] proptest! { #[test] + #[cfg_attr(miri, ignore)] fn test_permute_axes_6d(p in Just([0, 1, 2, 3, 4, 5]).prop_shuffle()) { let mut arr: Array6 = Array6::zeros((0, 1, 2, 3, 4, 5)); arr.permute_axes(p.clone());