From 7ddcb4e1b92361130ddc45dd6d68de359cd6910c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Mon, 9 Dec 2019 11:11:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A5=BF=E7=99=BE=E9=97=A8=E5=BA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platformapi/ebaiapi/store_page_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/platformapi/ebaiapi/store_page_test.go b/platformapi/ebaiapi/store_page_test.go index 5c139069..ebafa45c 100644 --- a/platformapi/ebaiapi/store_page_test.go +++ b/platformapi/ebaiapi/store_page_test.go @@ -141,5 +141,8 @@ func TestGetStoreInfo2(t *testing.T) { func TestGetShopListIDs(t *testing.T) { result, total, _ := api.GetShopListByPage(1, 10, 500, 1) - fmt.Println(result[0].Name, total) + fmt.Println(total) + for _, v := range result { + fmt.Println(v.Name, v.Wid) + } }