mirror of
https://github.com/Xevion/go-ha.git
synced 2025-12-05 23:15:07 -06:00
fix compilation error
This commit is contained in:
@@ -13,6 +13,7 @@ type MockState struct {
|
||||
EqualsError bool
|
||||
GetReturn EntityState
|
||||
GetError bool
|
||||
AllEntities []EntityState
|
||||
}
|
||||
|
||||
func (s MockState) AfterSunrise(_ ...DurationString) bool {
|
||||
@@ -33,6 +34,9 @@ func (s MockState) Get(eid string) (EntityState, error) {
|
||||
}
|
||||
return s.GetReturn, nil
|
||||
}
|
||||
func (s MockState) List() ([]EntityState, error) {
|
||||
return s.AllEntities, nil
|
||||
}
|
||||
func (s MockState) Equals(eid, state string) (bool, error) {
|
||||
if s.EqualsError {
|
||||
return false, errors.New("some error")
|
||||
|
||||
Reference in New Issue
Block a user