-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): retify word toekn to token (#1488)
- 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
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|