format coding style (#970)

master
Kevin Wan 3 years ago committed by GitHub
parent dfb3cb510a
commit 50a6bbe6b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,6 @@ import (
) )
func TestAccept(t *testing.T) { func TestAccept(t *testing.T) {
tests := []struct { tests := []struct {
name string name string
err error err error

@ -3,14 +3,14 @@ package serverinterceptors
import ( import (
"context" "context"
"fmt" "fmt"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"runtime/debug" "runtime/debug"
"strings" "strings"
"sync" "sync"
"time" "time"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
) )
// UnaryTimeoutInterceptor returns a func that sets timeout to incoming unary requests. // UnaryTimeoutInterceptor returns a func that sets timeout to incoming unary requests.

@ -2,14 +2,14 @@ package serverinterceptors
import ( import (
"context" "context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"sync" "sync"
"testing" "testing"
"time" "time"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
) )
func TestUnaryTimeoutInterceptor(t *testing.T) { func TestUnaryTimeoutInterceptor(t *testing.T) {
@ -70,6 +70,7 @@ func TestUnaryTimeoutInterceptor_timeoutExpire(t *testing.T) {
wg.Wait() wg.Wait()
assert.EqualValues(t, status.Error(codes.DeadlineExceeded, context.DeadlineExceeded.Error()), err) assert.EqualValues(t, status.Error(codes.DeadlineExceeded, context.DeadlineExceeded.Error()), err)
} }
func TestUnaryTimeoutInterceptor_cancel(t *testing.T) { func TestUnaryTimeoutInterceptor_cancel(t *testing.T) {
const timeout = time.Minute * 10 const timeout = time.Minute * 10
interceptor := UnaryTimeoutInterceptor(timeout) interceptor := UnaryTimeoutInterceptor(timeout)

Loading…
Cancel
Save