From c9519cd6722bd8357b56f19ec97e643cca941b78 Mon Sep 17 00:00:00 2001 From: nick Date: Fri, 23 Feb 2024 11:46:12 +0900 Subject: [PATCH] fix: remove comments to trigger github action --- node/pkg/admin/tests/main_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/node/pkg/admin/tests/main_test.go b/node/pkg/admin/tests/main_test.go index 80cf2e36d..fce9261a6 100644 --- a/node/pkg/admin/tests/main_test.go +++ b/node/pkg/admin/tests/main_test.go @@ -78,10 +78,9 @@ func cleanup(testItems *TestItems) func() error { } func TestMain(m *testing.M) { - // setup code := m.Run() db.ClosePool() db.CloseRedis() - // teardown + os.Exit(code) }