auth: fix warning in test

This commit is contained in:
Daniel Lee 2017-03-23 15:52:08 +01:00
parent 5773499dba
commit f45d637025

View File

@ -90,6 +90,10 @@ func (s *mockSession) Get(k interface{}) interface{} {
return s.value
}
func (s *mockSession) Delete(k interface{}) interface{} {
return nil
}
func (s *mockSession) ID() string {
return ""
}