Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ var _ = Describe("MigratingHandler", func() {
Expect(exists).To(BeTrue())
Expect(cond.Status).To(Equal(metav1.ConditionFalse))
Expect(cond.Reason).To(Equal(vmcondition.ReasonMigratingPending.String()))
Expect(cond.Message).To(Equal("Migration is in progress: scheduling the migration target."))
Expect(cond.Message).To(Equal("Migration is in progress: target pod is being scheduled."))
})

It("Should set active progress message when vmop is in progress with target preparing reason", func() {
Expand Down
2 changes: 1 addition & 1 deletion src/cli/internal/cmd/vnc/vnc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ var _ = Describe("VNC", func() {
// stay alive until ctx is canceled, not return immediately.
port := ln.Addr().(*net.TCPAddr).Port
Expect(port).To(BeNumerically(">", 0))
fmt.Fprintf(cmd.OutOrStdout(), "{\"port\":%d}\n", port)
_, _ = fmt.Fprintf(cmd.OutOrStdout(), "{\"port\":%d}\n", port)
<-ctx.Done()
close(connectDone)
return ctx.Err()
Expand Down
Loading