From 978306565d0e9e9f1e5347969ddaeffe0f989cfe Mon Sep 17 00:00:00 2001 From: Jordan Whited Date: Fri, 23 Aug 2024 16:58:31 -0700 Subject: [PATCH] tstest/integration: change log.Fatal() to t.Fatal() (#13253) Updates #cleanup Signed-off-by: Jordan Whited --- tstest/integration/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tstest/integration/integration_test.go b/tstest/integration/integration_test.go index 25bedb986..df6a62414 100644 --- a/tstest/integration/integration_test.go +++ b/tstest/integration/integration_test.go @@ -1197,7 +1197,7 @@ func TestDNSOverTCPIntervalResolver(t *testing.T) { return nil }) if err != nil { - log.Fatal(err) + t.Fatal(err) } }