From 72078cf6e40bf4d69779a612a67e4e4e6de88a88 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 26 Nov 2014 18:10:03 -0900 Subject: [PATCH] Typo in Mock Observations Service check. --- models/observations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/observations.go b/models/observations.go index 8d70565..8596e04 100644 --- a/models/observations.go +++ b/models/observations.go @@ -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 {