VOL-2139 update tests to use voltha-lib-go instead of voltha-go
Change-Id: I7581bf051e8aede6c46abb894b14c5871b713378
diff --git a/tests/kafka/kafka_client_test.go b/tests/kafka/kafka_client_test.go
index f6eadff..f1ac1b4 100644
--- a/tests/kafka/kafka_client_test.go
+++ b/tests/kafka/kafka_client_test.go
@@ -22,8 +22,8 @@
"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/any"
"github.com/google/uuid"
- "github.com/opencord/voltha-go/common/log"
- kk "github.com/opencord/voltha-go/kafka"
+ kk "github.com/opencord/voltha-lib-go/pkg/kafka"
+ "github.com/opencord/voltha-lib-go/pkg/log"
ic "github.com/opencord/voltha-protos/go/inter_container"
"github.com/stretchr/testify/assert"
"os"
diff --git a/tests/kafka/kafka_inter_container_messaging_test.go b/tests/kafka/kafka_inter_container_messaging_test.go
index 6a6dbc2..875d762 100644
--- a/tests/kafka/kafka_inter_container_messaging_test.go
+++ b/tests/kafka/kafka_inter_container_messaging_test.go
@@ -21,9 +21,9 @@
"context"
"github.com/golang/protobuf/ptypes"
"github.com/google/uuid"
- "github.com/opencord/voltha-go/common/log"
- kk "github.com/opencord/voltha-go/kafka"
rhp "github.com/opencord/voltha-go/rw_core/core"
+ kk "github.com/opencord/voltha-lib-go/pkg/kafka"
+ "github.com/opencord/voltha-lib-go/pkg/log"
ic "github.com/opencord/voltha-protos/go/inter_container"
"github.com/opencord/voltha-protos/go/voltha"
"github.com/stretchr/testify/assert"
@@ -126,7 +126,7 @@
//
//func TestMultipleSubscribeUnsubscribe(t *testing.T) {
// // First subscribe to the specific topic
-// //log.SetPackageLogLevel("github.com/opencord/voltha-go/kafka", log.DebugLevel)
+// //log.SetPackageLogLevel("github.com/opencord/voltha-lib-go/pkg/kafka", log.DebugLevel)
// var err error
// var ch1 <-chan *ic.InterContainerMessage
// var ch2 <-chan *ic.InterContainerMessage
@@ -165,7 +165,7 @@
//}
func TestIncorrectAPI(t *testing.T) {
- log.SetPackageLogLevel("github.com/opencord/voltha-go/kafka", log.ErrorLevel)
+ log.SetPackageLogLevel("github.com/opencord/voltha-lib-go/pkg/kafka", log.ErrorLevel)
trnsId := uuid.New().String()
protoMsg := &voltha.Device{Id: trnsId}
args := make([]*kk.KVArg, 1)