We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d5c460 commit 3a7d181Copy full SHA for 3a7d181
tests/src/integration_test.rs
@@ -240,11 +240,12 @@ mod test {
240
}
241
242
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;
+ let output: Result<std::process::Output, std::io::Error> =
+ tokio::process::Command::new("kubectl")
+ .arg("version")
+ .arg("--client")
+ .output()
248
+ .await;
249
250
match output {
251
Ok(output) => Ok(output.status.success()),
0 commit comments