Skip to content

Commit

Permalink
Fix wrong import paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Jun 14, 2017
1 parent a0f451d commit c8bb487
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion v2/libgrn/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package libgrn
import (
"io"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion v2/libgrn/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

func TestClientGQTP(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion v2/libgrn/conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"
"unsafe"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion v2/libgrn/conn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

func TestConnGQTP(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion v2/libgrn/libgrn.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"
"unsafe"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion v2/libgrn/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io/ioutil"
"time"

"github.com/s-yata/grnci"
"github.com/groonga/grnci/v2"
)

// response is a response.
Expand Down

0 comments on commit c8bb487

Please sign in to comment.