From 40f837aecfdd765aa605b3ce693084ea60090268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E5=B0=8F=E5=86=9B?= <346944475@qq.com> Date: Tue, 21 Jan 2020 22:52:01 +0800 Subject: [PATCH] fix test --- main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_test.go b/main_test.go index f55d2eb..192325f 100644 --- a/main_test.go +++ b/main_test.go @@ -15,6 +15,6 @@ func TestMain(t *testing.T) { // out, _ := json.Marshal(pkg) // tools.WriteFile("test.txt", []string{string(out)}, true) - list := model.Generate(pkg) + list, _ := model.Generate(pkg) fmt.Println(list) }