Skip to content

Commit

Permalink
test: remove case skip label (#37539)
Browse files Browse the repository at this point in the history
[test] remove case skip label
issue: #33952

Signed-off-by: ThreadDao <[email protected]>
  • Loading branch information
ThreadDao authored Nov 10, 2024
1 parent 12951f0 commit f42869c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/go_client/testcases/search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ func TestSearchInvalidCollectionPartitionName(t *testing.T) {

// test search empty collection -> return empty
func TestSearchEmptyCollection(t *testing.T) {
t.Skip("https://github.com/milvus-io/milvus/issues/33952")
t.Parallel()
ctx := hp.CreateContext(t, time.Second*common.DefaultTimeout)
mc := createDefaultMilvusClient(ctx, t)
Expand Down Expand Up @@ -111,7 +110,6 @@ func TestSearchEmptyCollection(t *testing.T) {
}

func TestSearchEmptySparseCollection(t *testing.T) {
t.Skip("https://github.com/milvus-io/milvus/issues/33952")
ctx := hp.CreateContext(t, time.Second*common.DefaultTimeout)
mc := createDefaultMilvusClient(ctx, t)

Expand Down Expand Up @@ -976,8 +974,6 @@ func TestSearchWithEmptySparseVector(t *testing.T) {

// test search from empty sparse vectors collection
func TestSearchFromEmptySparseVector(t *testing.T) {
t.Skip("https://github.com/milvus-io/milvus/issues/33952")
t.Skip("https://github.com/zilliztech/knowhere/issues/774")
idxInverted := index.NewSparseInvertedIndex(entity.IP, 0.1)
ctx := hp.CreateContext(t, time.Second*common.DefaultTimeout*2)
mc := createDefaultMilvusClient(ctx, t)
Expand Down Expand Up @@ -1006,7 +1002,6 @@ func TestSearchFromEmptySparseVector(t *testing.T) {
insertRes, err := mc.Insert(ctx, client.NewColumnBasedInsertOption(schema.CollectionName, data...))
common.CheckErr(t, err, true)
require.EqualValues(t, common.DefaultNb, insertRes.InsertCount)
prepare.FlushData(ctx, t, mc, schema.CollectionName)

// search vector is or not empty sparse vector
vector1, _ := entity.NewSliceSparseEmbedding([]uint32{}, []float32{})
Expand Down

0 comments on commit f42869c

Please sign in to comment.