Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Oct 1, 2024
1 parent 4abaa1c commit 8212fe1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion connection_provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ func TestNewConnectionProvider_FailConnectToSeedConns(t *testing.T) {
}

assert.Nil(t, cp)
assert.Equal(t, "failed to connect to seeds: server error: DeadlineExceeded, msg=context deadline exceeded", err.Error())
assert.Equal(
t,
"failed to connect to seeds: server error: DeadlineExceeded, msg=context deadline exceeded",
err.Error(),
)
}

func TestClose_FailsToCloseConns(t *testing.T) {
Expand Down

0 comments on commit 8212fe1

Please sign in to comment.