Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
make sure internal packages reference mdempsky/gocode
Browse files Browse the repository at this point in the history
  • Loading branch information
stamblerre committed Sep 11, 2018
1 parent e031868 commit 3c95ad8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

"runtime/debug"

"github.com/stamblerre/gocode/internal/suggest"
"github.com/mdempsky/gocode/internal/suggest"
)

func doClient() {
Expand Down
2 changes: 1 addition & 1 deletion internal/suggest/formatters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/stamblerre/gocode/internal/suggest"
"github.com/mdempsky/gocode/internal/suggest"
)

func TestFormatters(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/suggest/suggest.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"go/token"
"go/types"

"github.com/stamblerre/gocode/internal/lookdot"
"github.com/mdempsky/gocode/internal/lookdot"
"golang.org/x/tools/go/packages"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/suggest/suggest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

"github.com/stamblerre/gocode/internal/suggest"
"github.com/mdempsky/gocode/internal/suggest"
)

func TestRegress(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"runtime/debug"
"time"

"github.com/stamblerre/gocode/internal/suggest"
"github.com/mdempsky/gocode/internal/suggest"
)

func doServer() {
Expand Down

0 comments on commit 3c95ad8

Please sign in to comment.