Removed capitalization in error message
* This commit removed capitalization in error message Error string should not be capitalized: https://github.com/golang/go/wiki/CodeReviewComments#error-strings * Also, fixed some typos Signed-off-by: bijayasharma <vetbijaya@gmail.com> Change-Id: I01e9a0753ff0f2c18607ea3c5b9a3c3e9698f045
This commit is contained in:
parent
9589692d26
commit
bdeafa77b6
@ -47,7 +47,7 @@ type CommandOptions struct {
|
||||
Inventory ifc.Inventory
|
||||
}
|
||||
|
||||
// ListHostsCommand is used to store common variables from cmd flags for list-hots command
|
||||
// ListHostsCommand is used to store common variables from cmd flags for list-hosts command
|
||||
type ListHostsCommand struct {
|
||||
Writer io.Writer
|
||||
Options *CommandOptions
|
||||
@ -83,7 +83,7 @@ func (o *CommandOptions) validateSingleHostAction() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
//RunE method returns list of hots from BaremetalInventory
|
||||
//RunE method returns list of hosts from BaremetalInventory
|
||||
func (l *ListHostsCommand) RunE() error {
|
||||
if l.OutputFormat != TableOutputFormat && l.OutputFormat != YamlOutputFormat {
|
||||
return ErrInvalidOptions{Message: "output formats. Supported options are 'table' and 'yaml'"}
|
||||
@ -94,7 +94,7 @@ func (l *ListHostsCommand) RunE() error {
|
||||
return err
|
||||
}
|
||||
if len(hostClients) == 0 {
|
||||
return fmt.Errorf("No hosts present in the hostInventory")
|
||||
return fmt.Errorf("no hosts present in the hostInventory")
|
||||
}
|
||||
return l.Write(hostClients)
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ func TestListHostsCommand(t *testing.T) {
|
||||
})
|
||||
|
||||
t.Run("error ListHosts", func(t *testing.T) {
|
||||
expectedErr := fmt.Errorf("No hosts present in the hostInventory")
|
||||
expectedErr := fmt.Errorf("no hosts present in the hostInventory")
|
||||
var hosts []remoteifc.Client
|
||||
|
||||
bmhInv := &mockinventory.MockBMHInventory{}
|
||||
|
@ -16,7 +16,7 @@ package inventory
|
||||
|
||||
import "fmt"
|
||||
|
||||
// ErrInvalidOptions is returned when incompetible flags are
|
||||
// ErrInvalidOptions is returned when incompatible flags are
|
||||
type ErrInvalidOptions struct {
|
||||
Message string
|
||||
}
|
||||
|
@ -49,6 +49,6 @@ const (
|
||||
)
|
||||
|
||||
// BaremetalBatchRunOptions are options to be passed to RunOperation, this is to be
|
||||
// exetended in the future, to support such things as concurency
|
||||
// extended in the future, to support such things as concurency
|
||||
type BaremetalBatchRunOptions struct {
|
||||
}
|
||||
|
@ -15,7 +15,7 @@
|
||||
package ifc
|
||||
|
||||
// BaremetalHostSelector allows to select baremetal hosts, if used empty all possible hosts
|
||||
// will be should be returned by Select() method of BaremetalInvenotry interface
|
||||
// will be should be returned by Select() method of BaremetalInventory interface
|
||||
type BaremetalHostSelector struct {
|
||||
Name string
|
||||
Namespace string
|
||||
|
Loading…
Reference in New Issue
Block a user