Skip to content

Commit 3a7d181

Browse files
committed
tests: rustfmt
Signed-off-by: Jiaxiao (mossaka) Zhou <[email protected]>
1 parent 3d5c460 commit 3a7d181

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tests/src/integration_test.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,12 @@ mod test {
240240
}
241241

242242
async fn is_kubectl_installed() -> anyhow::Result<bool> {
243-
let output: Result<std::process::Output, std::io::Error> = tokio::process::Command::new("kubectl")
244-
.arg("version")
245-
.arg("--client")
246-
.output()
247-
.await;
243+
let output: Result<std::process::Output, std::io::Error> =
244+
tokio::process::Command::new("kubectl")
245+
.arg("version")
246+
.arg("--client")
247+
.output()
248+
.await;
248249

249250
match output {
250251
Ok(output) => Ok(output.status.success()),

0 commit comments

Comments
 (0)