From fefe6c558a4059b4269997782ba10e7a9bc4cd44 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 6 Aug 2024 09:36:09 +0700 Subject: [PATCH] Remove a cfg_attr check for `track_caller` This shouldn't be needed here as the test is already ignored. --- tests/test_fmt.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_fmt.rs b/tests/test_fmt.rs index 8f18216..abf3873 100644 --- a/tests/test_fmt.rs +++ b/tests/test_fmt.rs @@ -80,7 +80,6 @@ fn test_altdisplay() { #[test] #[ignore = "not really gonna work with the current printers"] -#[cfg_attr(track_caller, ignore)] fn test_debug() { assert_eq!(EXPECTED_DEBUG_F, format!("{:?}", f().unwrap_err())); assert_eq!(EXPECTED_DEBUG_G, format!("{:?}", g().unwrap_err()));