etcd: format import order

golang CodeReviewComments:
https://github.com/golang/go/wiki/CodeReviewComments#imports

Signed-off-by: demoManito <1430482733@qq.com>
This commit is contained in:
demoManito
2022-09-20 11:06:33 +08:00
parent 8650ae83f7
commit f67ec10779
7 changed files with 24 additions and 20 deletions

View File

@ -18,14 +18,15 @@ import (
"bytes"
"context"
"crypto/tls"
"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
clientv3test "go.etcd.io/etcd/tests/v3/integration/clientv3"
"testing"
"time"
"go.etcd.io/etcd/client/v3"
integration2 "go.etcd.io/etcd/tests/v3/framework/integration"
"google.golang.org/grpc"
"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
clientv3 "go.etcd.io/etcd/client/v3"
integration2 "go.etcd.io/etcd/tests/v3/framework/integration"
clientv3test "go.etcd.io/etcd/tests/v3/integration/clientv3"
)
func TestFailover(t *testing.T) {