Skip to content

Commit 44967ab

Browse files
alexandeargopherbot
authored andcommitted
google: fix typos
Change-Id: I8fc92767c1ea73e731736056c72628977017301e Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/645775 Reviewed-by: Michael Pratt <[email protected]> Auto-Submit: Sean Liao <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Sean Liao <[email protected]> Reviewed-by: Junyang Shao <[email protected]>
1 parent 9c82a8c commit 44967ab

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

google/externalaccount/basecredentials.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ const (
263263
fileTypeJSON = "json"
264264
)
265265

266-
// Format contains information needed to retireve a subject token for URL or File sourced credentials.
266+
// Format contains information needed to retrieve a subject token for URL or File sourced credentials.
267267
type Format struct {
268268
// Type should be either "text" or "json". This determines whether the file or URL sourced credentials
269269
// expect a simple text subject token or if the subject token will be contained in a JSON object.

google/externalaccount/basecredentials_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,12 @@ func TestNonworkforceWithWorkforcePoolUserProject(t *testing.T) {
347347
t.Fatalf("Expected error but found none")
348348
}
349349
if got, want := err.Error(), "oauth2/google/externalaccount: Workforce pool user project should not be set for non-workforce pool credentials"; got != want {
350-
t.Errorf("Incorrect error received.\nExpected: %s\nRecieved: %s", want, got)
350+
t.Errorf("Incorrect error received.\nExpected: %s\nReceived: %s", want, got)
351351
}
352352
}
353353

354354
func TestWorkforcePoolCreation(t *testing.T) {
355-
var audienceValidatyTests = []struct {
355+
var audienceValidityTests = []struct {
356356
audience string
357357
expectSuccess bool
358358
}{
@@ -371,7 +371,7 @@ func TestWorkforcePoolCreation(t *testing.T) {
371371
}
372372

373373
ctx := context.Background()
374-
for _, tt := range audienceValidatyTests {
374+
for _, tt := range audienceValidityTests {
375375
t.Run(" "+tt.audience, func(t *testing.T) { // We prepend a space ahead of the test input when outputting for sake of readability.
376376
config := testConfig
377377
config.TokenURL = "https://sts.googleapis.com" // Setting the most basic acceptable tokenURL

google/externalaccount/executablecredsource_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ func TestRetrieveOutputFileSubjectTokenNotJSON(t *testing.T) {
654654
if _, err = base.subjectToken(); err == nil {
655655
t.Fatalf("Expected error but found none")
656656
} else if got, want := err.Error(), jsonParsingError(outputFileSource, "tokentokentoken").Error(); got != want {
657-
t.Errorf("Incorrect error received.\nExpected: %s\nRecieved: %s", want, got)
657+
t.Errorf("Incorrect error received.\nExpected: %s\nReceived: %s", want, got)
658658
}
659659

660660
_, deadlineSet := te.getDeadline()
@@ -801,7 +801,7 @@ func TestRetrieveOutputFileSubjectTokenFailureTests(t *testing.T) {
801801
if _, err = ecs.subjectToken(); err == nil {
802802
t.Errorf("Expected error but found none")
803803
} else if got, want := err.Error(), tt.expectedErr.Error(); got != want {
804-
t.Errorf("Incorrect error received.\nExpected: %s\nRecieved: %s", want, got)
804+
t.Errorf("Incorrect error received.\nExpected: %s\nReceived: %s", want, got)
805805
}
806806

807807
if _, deadlineSet := te.getDeadline(); deadlineSet {
@@ -923,7 +923,7 @@ func TestRetrieveOutputFileSubjectTokenInvalidCache(t *testing.T) {
923923
}
924924

925925
if got, want := out, "tokentokentoken"; got != want {
926-
t.Errorf("Incorrect token received.\nExpected: %s\nRecieved: %s", want, got)
926+
t.Errorf("Incorrect token received.\nExpected: %s\nReceived: %s", want, got)
927927
}
928928
})
929929
}
@@ -1012,7 +1012,7 @@ func TestRetrieveOutputFileSubjectTokenJwt(t *testing.T) {
10121012
if out, err := ecs.subjectToken(); err != nil {
10131013
t.Errorf("retrieveSubjectToken() failed: %v", err)
10141014
} else if got, want := out, "tokentokentoken"; got != want {
1015-
t.Errorf("Incorrect token received.\nExpected: %s\nRecieved: %s", want, got)
1015+
t.Errorf("Incorrect token received.\nExpected: %s\nReceived: %s", want, got)
10161016
}
10171017

10181018
if _, deadlineSet := te.getDeadline(); deadlineSet {

google/google_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func TestConfigFromJSON(t *testing.T) {
7272
t.Errorf("ClientSecret = %q; want %q", got, want)
7373
}
7474
if got, want := conf.RedirectURL, "https://www.example.com/oauth2callback"; got != want {
75-
t.Errorf("RedictURL = %q; want %q", got, want)
75+
t.Errorf("RedirectURL = %q; want %q", got, want)
7676
}
7777
if got, want := strings.Join(conf.Scopes, ","), "scope1,scope2"; got != want {
7878
t.Errorf("Scopes = %q; want %q", got, want)

google/internal/externalaccountauthorizeduser/externalaccountauthorizeduser_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type testRefreshTokenServer struct {
3838
server *httptest.Server
3939
}
4040

41-
func TestExernalAccountAuthorizedUser_JustToken(t *testing.T) {
41+
func TestExternalAccountAuthorizedUser_JustToken(t *testing.T) {
4242
config := &Config{
4343
Token: "AAAAAAA",
4444
Expiry: now().Add(time.Hour),
@@ -57,7 +57,7 @@ func TestExernalAccountAuthorizedUser_JustToken(t *testing.T) {
5757
}
5858
}
5959

60-
func TestExernalAccountAuthorizedUser_TokenRefreshWithRefreshTokenInRespondse(t *testing.T) {
60+
func TestExternalAccountAuthorizedUser_TokenRefreshWithRefreshTokenInResponse(t *testing.T) {
6161
server := &testRefreshTokenServer{
6262
URL: "/",
6363
Authorization: "Basic Q0xJRU5UX0lEOkNMSUVOVF9TRUNSRVQ=",
@@ -99,7 +99,7 @@ func TestExernalAccountAuthorizedUser_TokenRefreshWithRefreshTokenInRespondse(t
9999
}
100100
}
101101

102-
func TestExernalAccountAuthorizedUser_MinimumFieldsRequiredForRefresh(t *testing.T) {
102+
func TestExternalAccountAuthorizedUser_MinimumFieldsRequiredForRefresh(t *testing.T) {
103103
server := &testRefreshTokenServer{
104104
URL: "/",
105105
Authorization: "Basic Q0xJRU5UX0lEOkNMSUVOVF9TRUNSRVQ=",
@@ -187,7 +187,7 @@ func TestExternalAccountAuthorizedUser_MissingRefreshFields(t *testing.T) {
187187
},
188188
},
189189
{
190-
name: "missing client secrect",
190+
name: "missing client secret",
191191
config: Config{
192192
RefreshToken: "BBBBBBBBB",
193193
TokenURL: url,

google/internal/stsexchange/sts_exchange_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func TestExchangeToken_Opts(t *testing.T) {
142142
}
143143
strOpts, ok := data["options"]
144144
if !ok {
145-
t.Errorf("Server didn't recieve an \"options\" field.")
145+
t.Errorf("Server didn't receive an \"options\" field.")
146146
} else if len(strOpts) < 1 {
147147
t.Errorf("\"options\" field has length 0.")
148148
}

0 commit comments

Comments
 (0)