From c668caeb310bce6bd7a743d7b3e1bfb9b98b79fe Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Fri, 16 Oct 2015 14:15:26 -0500 Subject: [PATCH] Fix error message in tests. --- conn_pool_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn_pool_test.go b/conn_pool_test.go index 93fea4d4..c83945f2 100644 --- a/conn_pool_test.go +++ b/conn_pool_test.go @@ -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 {