Skip to content

Commit

Permalink
chore: fix rustfmt warning
Browse files Browse the repository at this point in the history
Signed-off-by: Flavio Castelli <[email protected]>
  • Loading branch information
flavio committed Jan 25, 2024
1 parent 83422a6 commit 7684dda
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions kube-core/src/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,10 +357,9 @@ mod test {
assert_eq!(mypod.namespace().unwrap(), "dev");
assert_eq!(mypod.name_unchecked(), "blog");
assert!(mypod.status().is_none());
assert_eq!(
mypod.spec().containers[0],
ContainerSimple { image: "blog".into() }
);
assert_eq!(mypod.spec().containers[0], ContainerSimple {
image: "blog".into()
});

assert_eq!(PodSimple::api_version(&ar), "v1");
assert_eq!(PodSimple::version(&ar), "v1");
Expand Down

0 comments on commit 7684dda

Please sign in to comment.