Typo in Mock Observations Service check.

This commit is contained in:
Matthew Dillon 2014-11-26 18:10:03 -09:00
parent 88cbefc8fe
commit 72078cf6e4

View file

@ -167,7 +167,7 @@ type MockObservationsService struct {
Delete_ func(id int64) (bool, error)
}
var _ObservationsService = &MockObservationsService{}
var _ ObservationsService = &MockObservationsService{}
func (s *MockObservationsService) Get(id int64) (*Observation, error) {
if s.Get_ == nil {