Skip to content

Commit

Permalink
Fix issue with auth0 test token failing on audience input (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Mar 13, 2023
1 parent f4f021a commit e10608c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ func testTokenCmd(cli *cli) *cobra.Command {
return err
}

if err := testAudience.Ask(cmd, inputs.Audience, nil); err != nil {
return nil
if err := testAudience.Ask(cmd, &inputs.Audience, nil); err != nil {
return err
}

tenant, err := cli.getTenant()
Expand Down

0 comments on commit e10608c

Please sign in to comment.