Skip to content

Commit

Permalink
Fix case failed in nightly (#631)
Browse files Browse the repository at this point in the history
Signed-off-by: ThreadDao <[email protected]>
  • Loading branch information
ThreadDao authored Nov 30, 2023
1 parent 3014112 commit b2cdd7e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion test/testcases/collection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 0 additions & 2 deletions test/testcases/index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit b2cdd7e

Please sign in to comment.