diff --git a/crates/teloxide/tests/command.rs b/crates/teloxide/tests/command.rs index 245b4c33..c80e71bc 100644 --- a/crates/teloxide/tests/command.rs +++ b/crates/teloxide/tests/command.rs @@ -232,8 +232,10 @@ fn descriptions_off() { #[derive(BotCommands, Debug, PartialEq)] #[command(rename_rule = "lowercase")] enum DefaultCommands { - #[command(description = "off")] + #[command(hide)] Start, + #[command(hide)] + Username, Help, }