From b192bc790a6feaa7911cc9af2893a68d9bef3cbd Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Tue, 12 Sep 2023 12:26:32 -0700 Subject: [PATCH] tests: fix dropped error (#1081) --- tests/utils.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/utils.go b/tests/utils.go index f37472d432..e07a46d488 100644 --- a/tests/utils.go +++ b/tests/utils.go @@ -94,6 +94,9 @@ func (env *ClickHouseTestEnvironment) setVersion() { TLS: tlsConfig, DialTimeout: time.Duration(timeout) * time.Second, }) + if err != nil { + panic(err) + } v, err := conn.ServerVersion() if err != nil { panic(err)