From 751dc63a8ee66102a0b967d189e3d1ab860d29d1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 2 Nov 2024 09:41:40 -0700 Subject: [PATCH] Track caller of the assertion helper in test_expr --- tests/test_expr.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_expr.rs b/tests/test_expr.rs index c5e3b4b..e369ba0 100644 --- a/tests/test_expr.rs +++ b/tests/test_expr.rs @@ -50,6 +50,7 @@ pub enum RustupError { }, } +#[track_caller] fn assert(expected: &str, value: T) { assert_eq!(expected, value.to_string()); }