diff --git a/bench_test.go b/bench_test.go index 6a3d0ad6..c7225867 100644 --- a/bench_test.go +++ b/bench_test.go @@ -1,7 +1,7 @@ package pgx_test import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" "io/ioutil" "math/rand" "testing" diff --git a/conn_config_test.go.example b/conn_config_test.go.example index f4646554..e94c5111 100644 --- a/conn_config_test.go.example +++ b/conn_config_test.go.example @@ -1,7 +1,7 @@ package pgx_test import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" ) var defaultConnConfig *pgx.ConnConfig = &pgx.ConnConfig{Host: "127.0.0.1", User: "pgx_md5", Password: "secret", Database: "pgx_test"} diff --git a/conn_pool_test.go b/conn_pool_test.go index 94fa12d3..d0ad6c14 100644 --- a/conn_pool_test.go +++ b/conn_pool_test.go @@ -3,7 +3,7 @@ package pgx_test import ( "errors" "fmt" - "github.com/JackC/pgx" + "github.com/jackc/pgx" "sync" "testing" ) diff --git a/conn_test.go b/conn_test.go index c2d68ef4..7e753b5e 100644 --- a/conn_test.go +++ b/conn_test.go @@ -3,7 +3,7 @@ package pgx_test import ( "bytes" "fmt" - "github.com/JackC/pgx" + "github.com/jackc/pgx" "strings" "sync" "testing" diff --git a/data_row_reader_test.go b/data_row_reader_test.go index 4116238c..24f13863 100644 --- a/data_row_reader_test.go +++ b/data_row_reader_test.go @@ -1,7 +1,7 @@ package pgx_test import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" "testing" ) diff --git a/example_value_transcoder_test.go b/example_value_transcoder_test.go index a12a167d..a8ff81cc 100644 --- a/example_value_transcoder_test.go +++ b/example_value_transcoder_test.go @@ -3,7 +3,7 @@ package pgx_test import ( "encoding/binary" "fmt" - "github.com/JackC/pgx" + "github.com/jackc/pgx" "io" "regexp" "strconv" diff --git a/examples/README.md b/examples/README.md index 3d06f55b..9d7ed79f 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,5 +1,5 @@ # Examples * url_shortener contains a simple example of using pgx in a web context. -* (Tern)[https://github.com/JackC/tern] is a migration tool that uses pgx. -* (The Pithy Reader)[https://github.com/JackC/tpr] is a RSS aggregator that uses pgx. +* (Tern)[https://github.com/jackc/tern] is a migration tool that uses pgx. +* (The Pithy Reader)[https://github.com/jackc/tpr] is a RSS aggregator that uses pgx. diff --git a/examples/url_shortener/main.go b/examples/url_shortener/main.go index 53c988ec..8abfd861 100644 --- a/examples/url_shortener/main.go +++ b/examples/url_shortener/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" log "gopkg.in/inconshreveable/log15.v2" "io/ioutil" "net/http" diff --git a/helper_test.go b/helper_test.go index f3960ea1..bbf9d0dc 100644 --- a/helper_test.go +++ b/helper_test.go @@ -1,7 +1,7 @@ package pgx_test import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" "io" "testing" ) diff --git a/sql_test.go b/sql_test.go index bf2b20f5..eafd92fa 100644 --- a/sql_test.go +++ b/sql_test.go @@ -1,7 +1,7 @@ package pgx_test import ( - "github.com/JackC/pgx" + "github.com/jackc/pgx" "strconv" "testing" ) diff --git a/stdlib/sql.go b/stdlib/sql.go index 14f26443..dfb168e9 100644 --- a/stdlib/sql.go +++ b/stdlib/sql.go @@ -4,7 +4,7 @@ import ( "database/sql" "database/sql/driver" "fmt" - "github.com/JackC/pgx" + "github.com/jackc/pgx" "io" ) diff --git a/stdlib/sql_test.go b/stdlib/sql_test.go index 130870db..76848df9 100644 --- a/stdlib/sql_test.go +++ b/stdlib/sql_test.go @@ -2,7 +2,7 @@ package stdlib_test import ( "database/sql" - _ "github.com/JackC/pgx/stdlib" + _ "github.com/jackc/pgx/stdlib" "testing" )