Skip to content

chore: fix cargo clippy warning #233

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2025
Merged

Conversation

xixishidibei
Copy link
Contributor

Running cargo clippy reports the following error.

warning: variables can be used directly in the `format!` string
  --> src/assert.rs:64:17
   |
64 |                 panic!("Failed to spawn {:?}: {}", self, err);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
   = note: requested on the command line with `-W clippy::uninlined-format-args`
help: change this to
   |
64 -                 panic!("Failed to spawn {:?}: {}", self, err);
64 +                 panic!("Failed to spawn {self:?}: {err}");
   |

warning: `assert_cmd` (lib) generated 1 warning (run `cargo clippy --fix --lib -p assert_cmd` to apply 1 suggestion)

This commit resolves the issue.

@xixishidibei xixishidibei changed the title chore:fix cargo clippy warning chore: fix cargo clippy warning Apr 11, 2025
@coveralls
Copy link

Pull Request Test Coverage Report for Build 14395017533

Details

  • 0 of 1 (0.0%) changed or added relevant line in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 44.856%

Changes Missing Coverage Covered Lines Changed/Added Lines %
src/assert.rs 0 1 0.0%
Totals Coverage Status
Change from base Build 14241399667: 0.0%
Covered Lines: 218
Relevant Lines: 486

💛 - Coveralls

@epage epage merged commit a096861 into assert-rs:master Apr 11, 2025
14 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants