Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

internal: fix import paths #958

Merged
merged 1 commit into from Dec 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/pubsub/pub_test.go
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
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
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
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
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
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
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