From 5ec3a4205198cb01de7204ba33ae5da15efc6157 Mon Sep 17 00:00:00 2001 From: currypseudo Date: Sun, 12 Dec 2021 16:14:24 +0800 Subject: [PATCH] fix: comment in soa_attr test --- tests/soa_attr.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/soa_attr.rs b/tests/soa_attr.rs index 69caa85..6f3a9ef 100644 --- a/tests/soa_attr.rs +++ b/tests/soa_attr.rs @@ -87,9 +87,9 @@ fn serde_skip_test() -> Result<(), serde_json::Error> { let _ = ref_mut.meta; let ptr_mut = ref_mut.as_ptr(); - let _ = ptr_mut.x; // Should not have a deprecate warning - let _ = ptr_mut.y; // Should not have a deprecate warning - let _ = ptr_mut.meta; // Should have a deprecate warning + let _ = ptr_mut.x; + let _ = ptr_mut.y; // Should have a deprecate warning + let _ = ptr_mut.meta; } Ok(()) }