Skip to content

Commit

Permalink
internal: fix import paths (#958)
Browse files Browse the repository at this point in the history
Updates #77
  • Loading branch information
zombiezen committed Dec 13, 2018
1 parent 82f2756 commit 3c405e2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions internal/pubsub/pub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"testing"
"time"

"github.com/google/go-cloud/internal/pubsub"
"github.com/google/go-cloud/internal/pubsub/driver"
"gocloud.dev/internal/pubsub"
"gocloud.dev/internal/pubsub/driver"
)

type funcTopic struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/pubsub/rabbitpubsub/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"log"
"time"

"github.com/streadway/amqp"
"gocloud.dev/internal/pubsub"
"gocloud.dev/internal/pubsub/rabbitpubsub"
"github.com/streadway/amqp"
)

const rabbitURL = "amqp://guest:guest@localhost:5672/"
Expand Down
2 changes: 1 addition & 1 deletion internal/pubsub/rabbitpubsub/rabbit.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"sync/atomic"
"time"

"github.com/streadway/amqp"
"gocloud.dev/internal/pubsub"
"gocloud.dev/internal/pubsub/driver"
"github.com/streadway/amqp"
)

type topic struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/pubsub/rabbitpubsub/rabbit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ import (
"testing"
"time"

"github.com/streadway/amqp"
"gocloud.dev/internal/pubsub"
"gocloud.dev/internal/pubsub/driver"
"gocloud.dev/internal/pubsub/drivertest"
"github.com/streadway/amqp"
)

const rabbitURL = "amqp://guest:guest@localhost:5672/"
Expand Down
2 changes: 1 addition & 1 deletion internal/secrets/drivertest/drivertest.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"context"
"testing"

"github.com/google/go-cloud/internal/secrets/driver"
"github.com/google/go-cmp/cmp"
"gocloud.dev/internal/secrets/driver"
)

// Harness descibes the functionality test harnesses must provide to run
Expand Down
2 changes: 1 addition & 1 deletion internal/secrets/localsecrets/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"log"

"github.com/google/go-cloud/internal/secrets/localsecrets"
"gocloud.dev/internal/secrets/localsecrets"
)

func ExampleCrypterEncryptDecrypt() {
Expand Down
4 changes: 2 additions & 2 deletions internal/secrets/localsecrets/localsecrets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"context"
"testing"

"github.com/google/go-cloud/internal/secrets/driver"
"github.com/google/go-cloud/internal/secrets/drivertest"
"gocloud.dev/internal/secrets/driver"
"gocloud.dev/internal/secrets/drivertest"
)

type harness struct{}
Expand Down

0 comments on commit 3c405e2

Please sign in to comment.