Fix go vet issue

pull/436/head
Jack Christensen 2018-07-14 11:49:48 -05:00
parent 20c02acd63
commit b8832c26d4
1 changed files with 4 additions and 0 deletions

View File

@ -464,6 +464,10 @@ func TestConnCopyFromCopyFromSourceNextPanic(t *testing.T) {
conn.CopyFrom(pgx.Identifier{"foo"}, []string{"a"}, &nextPanicSource{})
}()
if !caughtPanic {
t.Error("expected panic but did not")
}
if conn.IsAlive() {
t.Error("panic should have killed conn")
}