From 0412e8c3fd2cdf2786e3c8f62f5edbaf69e90f3e Mon Sep 17 00:00:00 2001 From: morganelle Date: Fri, 19 Feb 2021 15:42:17 -0800 Subject: [PATCH] update comments --- internal/cli/test_login.go | 4 ++-- internal/cli/test_token.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/cli/test_login.go b/internal/cli/test_login.go index b3356ac9a..b7f75cfc7 100644 --- a/internal/cli/test_login.go +++ b/internal/cli/test_login.go @@ -52,8 +52,8 @@ Launch a browser to try out your universal login box for the given client. tenant, client, connectionName, - "", // audience is only supported for get-token - "login", // force a login page when using try-login + "", // audience is only supported for test token command + "login", // force a login page when using test login command cliLoginTestingScopes, ) if err != nil { diff --git a/internal/cli/test_token.go b/internal/cli/test_token.go index 1448d3c1e..45bd0ebbf 100644 --- a/internal/cli/test_token.go +++ b/internal/cli/test_token.go @@ -68,9 +68,9 @@ Fetch an access token for the given client and API. cli, tenant, client, - "", // specifying a connection is only supported for try-login + "", // specifying a connection is only supported for test login command audience, - "", // We don't want to force a prompt for get-token + "", // We don't want to force a prompt for test token command scopes, ) if err != nil {