This commit is contained in:
邹宗楠
2022-11-01 16:55:52 +08:00
parent 65da59acd7
commit 12a1643c6c
2 changed files with 10 additions and 0 deletions

View File

@@ -110,3 +110,10 @@ func TestOrderStatusAndPsInfo(t *testing.T) {
param["courier_phone"] = "19817862055"
a.OrderStatusAndPsInfo(param)
}
func TestMap(t *testing.T) {
data := map[string]string{"1": "1", "2": "2"}
fmt.Println(data)
delete(data, "1")
fmt.Println(data)
}