Fix clippy lints (#4262)

* Fix clippy lints

* Fix clippy lints

* Fix clippy lints
This commit is contained in:
JT
2022-01-18 07:33:28 -05:00
committed by GitHub
parent e6c09f2dfc
commit f562a4526c
11 changed files with 16 additions and 17 deletions

View File

@ -97,7 +97,7 @@ impl Executable for Director {
.spawn()
{
Ok(child) => child,
Err(why) => panic!("Can't run test {}", why.to_string()),
Err(why) => panic!("Can't run test {}", why),
};
if let Some(pipelines) = &self.pipeline {