mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
Rename method Empties to HasEmpties
This commit is contained in:
parent
cfbb2a6f41
commit
6e620073f5
@ -117,7 +117,7 @@ func (c *Config) Validate() error {
|
|||||||
case c.Address == "":
|
case c.Address == "":
|
||||||
return errors.New("address cannot be empty")
|
return errors.New("address cannot be empty")
|
||||||
|
|
||||||
case c.Root.Empties():
|
case c.Root.HasEmpties():
|
||||||
return errors.New("root cannot be empty")
|
return errors.New("root cannot be empty")
|
||||||
|
|
||||||
case c.IntermediateCert == "":
|
case c.IntermediateCert == "":
|
||||||
|
@ -49,8 +49,8 @@ func (s multiString) First() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// Empties returns `true` if any string in the array is empty.
|
// HasEmpties returns `true` if any string in the array is empty.
|
||||||
func (s multiString) Empties() bool {
|
func (s multiString) HasEmpties() bool {
|
||||||
if len(s) == 0 {
|
if len(s) == 0 {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ func Test_multiString_Empties(t *testing.T) {
|
|||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
if got := tt.s.Empties(); got != tt.want {
|
if got := tt.s.HasEmpties(); got != tt.want {
|
||||||
t.Errorf("multiString.Empties() = %v, want %v", got, tt.want)
|
t.Errorf("multiString.Empties() = %v, want %v", got, tt.want)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user