Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Aug 24, 2023
1 parent 015018b commit 3783df7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ help: ## Display this help screen

clippy: ## Run clippy checks over all workspace members
@cargo check --all-features
@cargo clippy --all-features --all-targets -- -D warnings -Aunused_variables -Aclippy::format_in_format_args -Aclippy::uninlined_format_args -Aclippy::unnecessary_cast
@cargo clippy --all-features --all-targets -- -D warnings

doc: ## Generate and tests docs including private items
@cargo doc --no-deps --all --document-private-items
Expand Down
2 changes: 1 addition & 1 deletion testool/src/statetest/suite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub fn load_statetests_suite(
let mut tcs = match tcs {
Ok(tcs) => tcs,
Err(e) => {
panic!("fail to load {:?}, err {:?}", path, e);
panic!("fail to load {path:?}, err {e:?}");
}
};

Expand Down

0 comments on commit 3783df7

Please sign in to comment.