From 80fe44bc0a143958ca564401bc88e95db5da0acf Mon Sep 17 00:00:00 2001 From: icey-yu <1186114839@qq.com> Date: Sun, 29 Sep 2024 10:57:10 +0800 Subject: [PATCH] test: fix get user token --- integration_test/internal/manager/user_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/internal/manager/user_manager.go b/integration_test/internal/manager/user_manager.go index ef7cd1e18..f412344f2 100644 --- a/integration_test/internal/manager/user_manager.go +++ b/integration_test/internal/manager/user_manager.go @@ -134,7 +134,7 @@ func (t *TestUserManager) login(ctx context.Context, userIDs ...string) error { for _, userID := range userIDs { userID := userID gr.Go(func() error { - token, err := t.GetAdminToken(userID, config.PlatformID) + token, err := t.GetUserToken(userID, config.PlatformID) if err != nil { return err }