mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
1578c13224
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
14 lines
272 B
Go
14 lines
272 B
Go
package querynode
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPartition_newPartition(t *testing.T) {
|
|
partitionID := defaultPartitionID
|
|
partition := newPartition(UniqueID(0), partitionID)
|
|
assert.Equal(t, partition.ID(), defaultPartitionID)
|
|
}
|