Skip to content

Commit

Permalink
fix cargo fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
baoyachi committed Aug 22, 2024
1 parent 02900c7 commit a8c9a2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gen_const.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ mod tests {

#[test]
fn test_version_fn() {
assert!(version_tag_const().contains(VERSION_TAG_CONST));
assert!(clap_version_branch_const().contains(CLAP_VERSION_BRANCH_CONST));
assert!(clap_long_version_branch_const().contains(CLAP_LONG_VERSION_BRANCH_CONST));
assert!(version_tag_const().contains(VERSION_TAG_CONST.0));
assert!(clap_version_branch_const().contains(CLAP_VERSION_BRANCH_CONST.1));
assert!(clap_long_version_branch_const().contains(CLAP_LONG_VERSION_BRANCH_CONST.1));
}
}

0 comments on commit a8c9a2a

Please sign in to comment.