Skip to content

Commit

Permalink
[e2e/multikueue] Check only the created workload spec. (kubernetes#1494)
Browse files Browse the repository at this point in the history
Check only the created workload spec in "Cluster kubeconfig propagation"
test.
  • Loading branch information
trasc authored Dec 19, 2023
1 parent a5a331a commit feeb829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/multikueue/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var _ = ginkgo.Describe("MultiKueue", func() {

createdWl := &kueue.Workload{}
gomega.Expect((*c).Get(ctx, client.ObjectKeyFromObject(wl), createdWl)).To(gomega.Succeed())
gomega.Expect(createdWl).To(gomega.BeComparableTo(wl))
gomega.Expect(createdWl.Spec).To(gomega.BeComparableTo(wl.Spec))

},
ginkgo.Entry("worker1", &k8sWorker1Client, "worker1.kubeconfig", &worker1Ns),
Expand Down

0 comments on commit feeb829

Please sign in to comment.