This commit is contained in:
Caleb Doxsey 2023-09-19 18:05:19 -06:00
parent dce25e12d5
commit 11c43eb2ed
4 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ func (mp MockProvider) Revoke(_ context.Context, _ *oauth2.Token) error {
// GetSignInURL is a mocked providers function.
func (mp MockProvider) GetSignInURL(_ string) (string, error) { return mp.GetSignInURLResponse, nil }
// LogOut is a mocked providers function.
// GetSignOutURL is a mocked providers function.
func (mp MockProvider) GetSignOutURL(_, _ string) (string, error) {
return mp.GetSignOutURLResponse, mp.GetSignOutURLError
}