summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/lib/pq/uuid_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/lib/pq/uuid_test.go')
-rw-r--r--vendor/github.com/lib/pq/uuid_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/lib/pq/uuid_test.go b/vendor/github.com/lib/pq/uuid_test.go
index 9df4a79b0..8ecee2fde 100644
--- a/vendor/github.com/lib/pq/uuid_test.go
+++ b/vendor/github.com/lib/pq/uuid_test.go
@@ -33,7 +33,7 @@ func TestDecodeUUIDBackend(t *testing.T) {
db := openTestConn(t)
defer db.Close()
- var s string = "a0ecc91d-a13f-4fe4-9fce-7e09777cc70a"
+ var s = "a0ecc91d-a13f-4fe4-9fce-7e09777cc70a"
var scanned interface{}
err := db.QueryRow(`SELECT $1::uuid`, s).Scan(&scanned)