Fix error message in tests.

pull/111/head
Jack Christensen 2015-10-16 14:15:26 -05:00
parent 7dfdc92855
commit c668caeb31
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ func TestConnPoolQueryConcurrentLoad(t *testing.T) {
}
if rows.Err() != nil {
t.Fatalf("conn.Query failed: ", err)
t.Fatalf("conn.Query failed: ", rows.Err())
}
if rowCount != 1000 {