summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-08 22:17:13 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-06-08 22:17:14 +0200
commit7c3ec71d45c48314cde3c0e6d9de1e1ff893d796 (patch)
tree8cb4a668268a12eeb434fb571cc9012a641db198
parent786bbbbe5266ba583e5a5ca1961059d8f0a28952 (diff)
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 <mail@beyermatthias.de>
-rw-r--r--tests/env.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/env.rs b/tests/env.rs
index 560ec3b..4d1a966 100644
--- a/tests/env.rs
+++ b/tests/env.rs
@@ -184,7 +184,7 @@ fn test_parse_bool() {
assert!(matches!(
config,
- TestBoolEnum::Bool(TestBool { bool_val: true }),
+ TestBoolEnum::Bool(TestBool { bool_val: true })
));
env::remove_var("BOOL_VAL");