milvus/pkg/master/mock/grpc_client_test.go
zhenshan.cao 9c15fc550e Enable CICD
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
2020-10-14 17:46:16 +08:00

18 lines
238 B
Go

package mock
import (
"fmt"
"testing"
)
func TestFakeCreateCollectionByGRPC(t *testing.T) {
t.Skip("to fix test")
reason, segmentID := FakeCreateCollectionByGRPC()
if reason != "" {
t.Error(reason)
}
fmt.Println(segmentID)
}