From f2e865f4936706806ccfb34dc3a23a599a797fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Thu, 15 Aug 2024 11:20:08 +0200 Subject: [PATCH] Fix lint issue in healthcheck test --- relay/healthcheck/sender_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/relay/healthcheck/sender_test.go b/relay/healthcheck/sender_test.go index 220bb8ac0..3e04ad21c 100644 --- a/relay/healthcheck/sender_test.go +++ b/relay/healthcheck/sender_test.go @@ -2,6 +2,7 @@ package healthcheck import ( "context" + "os" "testing" "time" ) @@ -11,6 +12,7 @@ func TestMain(m *testing.M) { healthCheckInterval = 1 * time.Second healthCheckTimeout = 100 * time.Millisecond m.Run() + os.Exit(0) } func TestNewHealthPeriod(t *testing.T) {