Skip to content

Commit 7c3ec71

Browse files
committed
Fix: Remove trailing comma
Because the old Rust version in the CI fails with this comma in the macro call, we remove it here. Signed-off-by: Matthias Beyer <[email protected]>
1 parent 786bbbb commit 7c3ec71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ fn test_parse_bool() {
184184

185185
assert!(matches!(
186186
config,
187-
TestBoolEnum::Bool(TestBool { bool_val: true }),
187+
TestBoolEnum::Bool(TestBool { bool_val: true })
188188
));
189189

190190
env::remove_var("BOOL_VAL");

0 commit comments

Comments
 (0)