Skip to content

Commit

Permalink
Remove extraneous debug call
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Nov 3, 2022
1 parent 88a6d96 commit e4b40ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/parse_format_description.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
));
}
Expand Down

0 comments on commit e4b40ad

Please sign in to comment.