Skip to content

Commit

Permalink
Remove golang.org/x/net/context (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
int128 authored Aug 3, 2024
1 parent 98531a7 commit a2f4e93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ require (
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.27.0
golang.org/x/oauth2 v0.21.0
golang.org/x/sync v0.7.0
golang.org/x/term v0.22.0
Expand Down Expand Up @@ -47,6 +46,7 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.3.0 // indirect
Expand Down
5 changes: 3 additions & 2 deletions pkg/infrastructure/mutex/mutex_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package mutex

import (
"context"
"fmt"
"github.com/int128/kubelogin/pkg/infrastructure/logger"
"golang.org/x/net/context"
"math/rand"
"sync"
"testing"
"time"

"github.com/int128/kubelogin/pkg/infrastructure/logger"
)

func TestMutex(t *testing.T) {
Expand Down

0 comments on commit a2f4e93

Please sign in to comment.