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) + } }