From 8c63ab9ebee218b7e1c5fcf17594d76348b9f726 Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Wed, 13 Dec 2017 14:09:42 +0100 Subject: Use core directly in tests to avoid need of vppapiclient library Change-Id: I1fa534129ee7e04eb5058a215fa7eabfe1ecc2bf Signed-off-by: Ondrej Fabry --- api/api_test.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/api/api_test.go b/api/api_test.go index 64c513c..3e77f48 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -18,7 +18,6 @@ import ( "testing" "time" - "git.fd.io/govpp.git" "git.fd.io/govpp.git/adapter/mock" "git.fd.io/govpp.git/api" "git.fd.io/govpp.git/core" @@ -39,12 +38,12 @@ type testCtx struct { func setupTest(t *testing.T) *testCtx { RegisterTestingT(t) - ctx := &testCtx{} - ctx.mockVpp = &mock.VppAdapter{} - govpp.SetAdapter(ctx.mockVpp) + ctx := &testCtx{ + mockVpp: &mock.VppAdapter{}, + } var err error - ctx.conn, err = govpp.Connect() + ctx.conn, err = core.Connect(ctx.mockVpp) Expect(err).ShouldNot(HaveOccurred()) ctx.ch, err = ctx.conn.NewAPIChannel() -- cgit 1.2.3-korg