- 美团外卖的ErrCodeSysErr当成可恢复错误(而不是超访问频率错误)

This commit is contained in:
gazebo
2019-08-06 20:22:44 +08:00
parent df1c2c52a1
commit d0f16a33da
2 changed files with 12 additions and 1 deletions

View File

@@ -91,3 +91,10 @@ func TestPoiShipTimeUpdate(t *testing.T) {
t.Fatal(err)
}
}
func TestPoiOpen(t *testing.T) {
err := api.PoiOpen("6735933")
if err != nil {
t.Fatal(err)
}
}