Rename unittest for indexparamcheck (#7580)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
This commit is contained in:
groot 2021-09-08 19:10:03 +08:00 committed by GitHub
parent baab775250
commit 159d3702a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ import (
"github.com/stretchr/testify/assert"
)
func TestGetConfAdapterMgrInstance(t *testing.T) {
func Test_GetConfAdapterMgrInstance(t *testing.T) {
adapterMgr := GetConfAdapterMgrInstance()
var adapter ConfAdapter

View File

@ -5,7 +5,7 @@ import (
"testing"
)
func TestCheckIntByRange(t *testing.T) {
func Test_CheckIntByRange(t *testing.T) {
params := map[string]string{
"1": strconv.Itoa(1),
"2": strconv.Itoa(2),
@ -46,7 +46,7 @@ func TestCheckIntByRange(t *testing.T) {
}
}
func TestCheckStrByValues(t *testing.T) {
func Test_CheckStrByValues(t *testing.T) {
params := map[string]string{
"1": strconv.Itoa(1),
"2": strconv.Itoa(2),