From 81a55850297aed3fc45abc076d97d772be385077 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Wed, 22 Oct 2025 22:07:41 +0800 Subject: [PATCH] fix typo --- pkg/auth/oauth2/nextcloud_oauth2_datasource_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/auth/oauth2/nextcloud_oauth2_datasource_test.go b/pkg/auth/oauth2/nextcloud_oauth2_datasource_test.go index 690f2b7f..77742647 100644 --- a/pkg/auth/oauth2/nextcloud_oauth2_datasource_test.go +++ b/pkg/auth/oauth2/nextcloud_oauth2_datasource_test.go @@ -19,7 +19,7 @@ func TestNewNextcloudOAuth2Provider(t *testing.T) { assert.Equal(t, "https://example.com/apps/oauth2/api/v1/token", datasource.GetTokenUrl()) } -func TestNextcloudOAuth2datasource_GetUserInfoRequest(t *testing.T) { +func TestNextcloudOAuth2Datasource_GetUserInfoRequest(t *testing.T) { datasource := &NextcloudOAuth2DataSource{baseUrl: "https://example.com/"} req, err := datasource.GetUserInfoRequest()