Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump google.golang.org/grpc from 1.54.0 to 1.55.0 #16

Merged
merged 2 commits into from
Jun 15, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
fix import path
  • Loading branch information
calebdoxsey committed Jun 15, 2023
commit 0ec3ae604a543e9ed4409e2ab321ce223c902e6e
6 changes: 3 additions & 3 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"google.golang.org/grpc"
"google.golang.org/grpc/interop/grpc_testing"
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/test/grpc_testing"
)

func Test_PomeriumAuthCredentials(t *testing.T) {
var token = "mysecuretesttoken"
token := "mysecuretesttoken"

creds := NewPomeriumAuthCredentials(token)
meta, err := creds.GetRequestMetadata(context.Background(), "/something")
Expand All @@ -27,7 +27,7 @@ func Test_PomeriumAuthCredentials(t *testing.T) {
}

func Test_dial(t *testing.T) {
var token = "mysecuretesttoken"
token := "mysecuretesttoken"

srv := grpc.NewServer()
h := httptest.NewUnstartedServer(srv)
Expand Down