From e4b40add3fe4ecadc5ef9345e0233e06dfb5d233 Mon Sep 17 00:00:00 2001 From: Jacob Pratt Date: Wed, 2 Nov 2022 21:20:25 -0400 Subject: [PATCH] Remove extraneous debug call --- tests/parse_format_description.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parse_format_description.rs b/tests/parse_format_description.rs index 06e855357..9db122657 100644 --- a/tests/parse_format_description.rs +++ b/tests/parse_format_description.rs @@ -309,7 +309,7 @@ fn errors() { Err(UnclosedOpeningBracket { index: 0, .. }) )); assert!(matches!( - dbg!(format_description::parse("[day padding:invalid]")), + format_description::parse("[day padding:invalid]"), Err(InvalidModifier { value, index: 13, .. }) if value == "invalid" )); }