From 45b5d0983cd0974952fcb185214bca0f549ce4e8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 13 Jul 2023 12:09:40 -0700 Subject: [PATCH] net/art: fix running tests outside of CI Updates #7866 Signed-off-by: David Anderson --- net/art/art_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/net/art/art_test.go b/net/art/art_test.go index 5fddcac97..daf8553ca 100644 --- a/net/art/art_test.go +++ b/net/art/art_test.go @@ -16,4 +16,5 @@ func TestMain(m *testing.M) { // TODO: https://github.com/tailscale/tailscale/issues/7866 os.Exit(0) } + os.Exit(m.Run()) }