fix:单元测试补充

This commit is contained in:
libin
2023-03-11 23:20:34 +08:00
parent 7eea496cd2
commit c2d18104bd
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ func TestMergeStr(t *testing.T) {
var s2 = []string{"a"}
var s3 = []string{"a"}
res := MergeStr(s1, s2, s3)
res := MergeStrSlices(s1, s2, s3)
fmt.Printf("%+v", res)
}