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 18763c2 commit fd9006bCopy full SHA for fd9006b
pkg/client/client_test.go
@@ -869,6 +869,12 @@ var _ = Describe("Client", func() {
869
By("validating updated Deployment has type information")
870
Expect(u.GroupVersionKind()).To(Equal(depGvk))
871
872
+ By("validating patched Deployment has new status")
873
+ actual, err := clientset.AppsV1().Deployments(ns).Get(dep.Name, metav1.GetOptions{})
874
+ Expect(err).NotTo(HaveOccurred())
875
+ Expect(actual).NotTo(BeNil())
876
+ Expect(actual.Status.Replicas).To(BeEquivalentTo(1))
877
+
878
close(done)
879
})
880
0 commit comments