Skip to content

Commit

Permalink
chore(interop): Fix deprecated clap arg (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Feb 17, 2022
1 parent ef6e245 commit 0f7344a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion interop/src/bin/client.rs
Expand Up @@ -9,7 +9,12 @@ struct Opts {
#[clap(name = "use_tls", long)]
use_tls: bool,

#[clap(long = "test_case", use_delimiter = true, min_values = 1, arg_enum)]
#[clap(
long = "test_case",
use_value_delimiter = true,
min_values = 1,
arg_enum
)]
test_case: Vec<Testcase>,
}

Expand Down

0 comments on commit 0f7344a

Please sign in to comment.