From 3d81d21ff5c014603b1d92ec1d64cccc8af14360 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sat, 9 Apr 2022 15:40:29 -0700 Subject: [PATCH] tests: fix test checking clap arguments to actually check --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 67ad7f95e..38a53fb5f 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -4652,6 +4652,6 @@ mod tests { #[test] fn verify_app() { - Args::command(); + Args::command().debug_assert(); } }