Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gssbzn committed Apr 30, 2020
1 parent 5a907d0 commit b283248
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions atmcfg/atmcfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"errors"
"fmt"

"github.com/mongodb/go-client-mongodb-ops-manager/opsmngr"
"github.com/mongodb/go-client-mongodb-ops-manager/search"
"go.mongodb.org/ops-manager/opsmngr"
"go.mongodb.org/ops-manager/search"
)

func setDisabledByClusterName(out *opsmngr.AutomationConfig, name string, disabled bool) {
Expand Down
2 changes: 1 addition & 1 deletion atmcfg/atmcfg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package atmcfg
import (
"testing"

"github.com/mongodb/go-client-mongodb-ops-manager/opsmngr"
"go.mongodb.org/ops-manager/opsmngr"
)

func automationConfigWithOneReplicaSet(name string, disabled bool) *opsmngr.AutomationConfig {
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ require (
github.com/go-test/deep v1.0.5
github.com/google/go-querystring v1.0.0
github.com/mongodb/go-client-mongodb-atlas v0.2.1-0.20200427191133-b5e334932f44
github.com/mongodb/go-client-mongodb-ops-manager v0.2.2
)
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASu
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
github.com/mongodb/go-client-mongodb-atlas v0.2.1-0.20200427191133-b5e334932f44 h1:PUOc5BwUVOqGVQqX5vs2MPiJJ6PEZ+jA7TYtna1gOLo=
github.com/mongodb/go-client-mongodb-atlas v0.2.1-0.20200427191133-b5e334932f44/go.mod h1:LS8O0YLkA+sbtOb3fZLF10yY3tJM+1xATXMJ3oU35LU=
github.com/mongodb/go-client-mongodb-ops-manager v0.2.2 h1:xQoyeLjRJmOjvCkjCwbnkzIvugpm6eNozDw4Auk84to=
github.com/mongodb/go-client-mongodb-ops-manager v0.2.2/go.mod h1:RrXnfBx3CyKN64jXkXFEO07CnMBEYa5CdlHOQ/30a5A=
github.com/mwielbut/pointy v1.1.0 h1:U5/YEfoIkaGCHv0St3CgjduqXID4FNRoyZgLM1kY9vg=
github.com/mwielbut/pointy v1.1.0/go.mod h1:MvvO+uMFj9T5DMda33HlvogsFBX7pWWKAkFIn4teYwY=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
4 changes: 2 additions & 2 deletions search/example_search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package search_test
import (
"fmt"

"github.com/mongodb/go-client-mongodb-ops-manager/opsmngr"
"github.com/mongodb/go-client-mongodb-ops-manager/search"
"go.mongodb.org/ops-manager/opsmngr"
"go.mongodb.org/ops-manager/search"
)

var fixture = &opsmngr.AutomationConfig{
Expand Down
2 changes: 1 addition & 1 deletion search/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
package search

import (
"github.com/mongodb/go-client-mongodb-ops-manager/opsmngr"
"go.mongodb.org/ops-manager/opsmngr"
)

// Processes return the smallest index i
Expand Down
4 changes: 2 additions & 2 deletions search/search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package search_test
import (
"testing"

"github.com/mongodb/go-client-mongodb-ops-manager/opsmngr"
"github.com/mongodb/go-client-mongodb-ops-manager/search"
"go.mongodb.org/ops-manager/opsmngr"
"go.mongodb.org/ops-manager/search"
)

func TestProcesses(t *testing.T) {
Expand Down

0 comments on commit b283248

Please sign in to comment.