Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/cmd/testoidcauth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func machine31failureWithCachedTokensFetchANewTokenAndRetryAuth() error {
authenticatorField = reflect.NewAt(
authenticatorField.Type(),
unsafe.Pointer(authenticatorField.UnsafeAddr())).Elem()
// this is the only usage of the x packages in the test, showing the the public interface is
// this is the only usage of the x packages in the test, showing the public interface is
// correct.
authenticatorField.Interface().(*auth.OIDCAuthenticator).SetAccessToken("some random happy sunshine string")

Expand Down Expand Up @@ -1211,7 +1211,7 @@ func human31usesSpeculativeAuth() error {
authenticatorField = reflect.NewAt(
authenticatorField.Type(),
unsafe.Pointer(authenticatorField.UnsafeAddr())).Elem()
// This is the only usage of the x packages in the test, showing the the public interface is
// This is the only usage of the x packages in the test, showing the public interface is
// correct.
authenticatorField.Interface().(*auth.OIDCAuthenticator).SetAccessToken(string(accessToken))

Expand Down
Loading