diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-07-06 15:49:35 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-07-06 23:56:54 +0900 |
commit | e4031c14a5060c4fadf7e3c655bd0f6d7714b634 (patch) | |
tree | 101986ba40d8cd3a5e2cfa8471bbc41b8bada765 /client/client_test.go | |
parent | 69f866a77cb83db8925fb95fb55d6086fbfe899c (diff) |
api: decrease the dependency
move grpc_server.go to server/
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'client/client_test.go')
-rw-r--r-- | client/client_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/client_test.go b/client/client_test.go index 6bcf73b2..63f430fb 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -19,7 +19,6 @@ import ( "testing" "time" - api "github.com/osrg/gobgp/api" "github.com/osrg/gobgp/config" "github.com/osrg/gobgp/server" "github.com/stretchr/testify/assert" @@ -29,7 +28,7 @@ func TestGetNeighbor(test *testing.T) { assert := assert.New(test) s := server.NewBgpServer() go s.Serve() - g := api.NewGrpcServer(s, ":50051") + g := server.NewGrpcServer(s, ":50051") go g.Serve() time.Sleep(time.Second) cli, err := New("") |