diff --git a/test/testcases/collection_test.go b/test/testcases/collection_test.go index 13b6a9ef..693eba5b 100644 --- a/test/testcases/collection_test.go +++ b/test/testcases/collection_test.go @@ -182,7 +182,7 @@ func TestCreateCollectionInvalidFields(t *testing.T) { common.GenField(common.DefaultIntFieldName, entity.FieldTypeInt64, common.WithIsPrimaryKey(true)), common.GenField("", entity.FieldTypeNone), common.GenField(common.DefaultFloatVecFieldName, entity.FieldTypeFloatVector, common.WithDim(common.DefaultDim)), - }, errMsg: "data type None is not valid"}, + }, errMsg: "None data type not supported"}, // create collection with String field type {fields: []*entity.Field{ diff --git a/test/testcases/index_test.go b/test/testcases/index_test.go index 39e9ac61..51348e9a 100644 --- a/test/testcases/index_test.go +++ b/test/testcases/index_test.go @@ -375,7 +375,6 @@ func TestCreateIndexNil(t *testing.T) { // test create index async true func TestCreateIndexAsync(t *testing.T) { - t.Skip("Issue: https://github.com/milvus-io/milvus-sdk-go/issues/361") ctx := createContext(t, time.Second*common.DefaultTimeout) // connect mc := createMilvusClient(ctx, t) @@ -402,7 +401,6 @@ func TestCreateIndexAsync(t *testing.T) { // test get index state func TestIndexState(t *testing.T) { - t.Skip("Issue: https://github.com/milvus-io/milvus-sdk-go/issues/361") ctx := createContext(t, time.Second*common.DefaultTimeout) // connect mc := createMilvusClient(ctx, t)