Browse Source

tests: fix after interface change

Daniel Lee 8 years ago
parent
commit
aa889e59a1
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pkg/middleware/auth_proxy_test.go

+ 4 - 0
pkg/middleware/auth_proxy_test.go

@@ -106,6 +106,10 @@ func (s *mockSession) Destory(c *Context) error {
 	return nil
 }
 
+func (s *mockSession) RegenerateId(c *Context) error {
+	return nil
+}
+
 type mockLdapAuthenticator struct {
 	syncSignedInUserCalled bool
 }