Skip to content

Commit

Permalink
chore(docs): retify word toekn to token (#1488)
Browse files Browse the repository at this point in the history
- change "toekn" annotation for "token"

## What kind of change does this PR introduce?

  docs: fix annotation #1487 

## What is the current behavior?

 Word "toekn"

## What is the new behavior?

 to "token"
  • Loading branch information
raferdev authored Mar 19, 2024
1 parent 5c04104 commit 77cc7ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/api/external_figma_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (ts *ExternalTestSuite) TestSignupExternalFigma_PKCE() {
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), authCode)

// Check for valid provider access token, mock does not return refresh toekn
// Check for valid provider access token, mock does not return refresh token
user, err := models.FindUserByEmailAndAudience(ts.API.db, "[email protected]", ts.Config.JWT.Aud)
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), user)
Expand Down
2 changes: 1 addition & 1 deletion internal/api/external_fly_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (ts *ExternalTestSuite) TestSignupExternalFly_PKCE() {
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), authCode)

// Check for valid provider access token, mock does not return refresh toekn
// Check for valid provider access token, mock does not return refresh token
user, err := models.FindUserByEmailAndAudience(ts.API.db, "[email protected]", ts.Config.JWT.Aud)
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), user)
Expand Down
2 changes: 1 addition & 1 deletion internal/api/external_github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (ts *ExternalTestSuite) TestSignupExternalGitHub_PKCE() {
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), authCode)

// Check for valid provider access token, mock does not return refresh toekn
// Check for valid provider access token, mock does not return refresh token
user, err := models.FindUserByEmailAndAudience(ts.API.db, "[email protected]", ts.Config.JWT.Aud)
require.NoError(ts.T(), err)
require.NotEmpty(ts.T(), user)
Expand Down

0 comments on commit 77cc7ac

Please sign in to comment.