From 5423941e2deeebe3091b025553a9e882064cf6c9 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Wed, 27 Nov 2024 10:24:25 -0500 Subject: [PATCH] feat(update_backlog)!: default `--only-across-all-platforms` to `false` --- moz-webgpu-cts/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moz-webgpu-cts/src/main.rs b/moz-webgpu-cts/src/main.rs index 2875339..d184cc4 100644 --- a/moz-webgpu-cts/src/main.rs +++ b/moz-webgpu-cts/src/main.rs @@ -293,7 +293,7 @@ enum OnZeroItem { enum UpdateBacklogSubcommand { /// Remove tests that expect only `PASS` outcomes on all platforms from `backlog`. PromotePermaPassing { - #[clap(long, default_value_t = true)] + #[clap(long)] only_across_all_platforms: bool, }, }