From 419442bd2c6069c4434c68d9e57ef8f639072609 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 09:55:16 +0000 Subject: [PATCH] rustfmt (#1661) Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: clux <134092+clux@users.noreply.github.com> --- kube-client/src/config/file_config.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kube-client/src/config/file_config.rs b/kube-client/src/config/file_config.rs index c290289d5..af1ba688e 100644 --- a/kube-client/src/config/file_config.rs +++ b/kube-client/src/config/file_config.rs @@ -1006,7 +1006,11 @@ users: ]; for file_name in files { - let path = PathBuf::from(format!("{}/src/config/test_data/{}", env!("CARGO_MANIFEST_DIR"), file_name)); + let path = PathBuf::from(format!( + "{}/src/config/test_data/{}", + env!("CARGO_MANIFEST_DIR"), + file_name + )); let cfg = Kubeconfig::read_from(path).unwrap(); assert_eq!(cfg.clusters[0].name, "k3d-promstack"); assert_eq!(cfg.contexts[0].name, "k3d-promstack");