Skip to content

Commit

Permalink
tests: fix dropped error (#1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs authored Sep 12, 2023
1 parent bf2049d commit b192bc7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b192bc7

Please sign in to comment.