Skip to content

Commit e78c0c0

Browse files
author
Brian Flores
committed
updated success message
1 parent 3c45245 commit e78c0c0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugin/commands/user/vpn_password.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func (cmd *VpnPasswordCommand) Run(args []string) error {
5353
}
5454
if success {
5555
cmd.UI.Ok()
56-
cmd.UI.Print(T("Successfully updated user vpn."))
56+
cmd.UI.Print(T("Successfully updated user VPN password."))
5757
}
5858
return nil
5959
}

plugin/commands/user/vpn_password_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var _ = Describe("user vpn-password", func() {
7272
err := testhelpers.RunCobraCommand(cliCommand.Command, "111111", "--password=Mypassword1.")
7373
Expect(err).NotTo(HaveOccurred())
7474
Expect(fakeUI.Outputs()).To(ContainSubstring("OK"))
75-
Expect(fakeUI.Outputs()).To(ContainSubstring("Successfully updated user vpn"))
75+
Expect(fakeUI.Outputs()).To(ContainSubstring("Successfully updated user VPN password"))
7676
})
7777
})
7878
})

0 commit comments

Comments
 (0)