aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/integration_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/integration_test.go')
-rw-r--r--integrations/integration_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/integrations/integration_test.go b/integrations/integration_test.go
index 9e0445cae7..e7ceb33e96 100644
--- a/integrations/integration_test.go
+++ b/integrations/integration_test.go
@@ -359,6 +359,10 @@ func emptyTestSession(t testing.TB) *TestSession {
return &TestSession{jar: jar}
}
+func getUserToken(t testing.TB, userName string) string {
+ return getTokenForLoggedInUser(t, loginUser(t, userName))
+}
+
func loginUser(t testing.TB, userName string) *TestSession {
t.Helper()
if session, ok := loginSessionCache[userName]; ok {