Skip to content

Commit

Permalink
BUGFIX-fixed typo in TM filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Sep 16, 2020
1 parent 1a81600 commit 3c6ac23
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion client/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"fmt"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// Network stores all methods and objects related to network.
Expand Down
2 changes: 1 addition & 1 deletion client/range.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"fmt"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// Range stores all methods and objects related to range.
Expand Down
2 changes: 1 addition & 1 deletion client/record_a.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// RecordA stores all methods and objects related to record:a.
Expand Down
2 changes: 1 addition & 1 deletion client/record_cname.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// RecordCname stores all methods and objects related to record:cname.
Expand Down
2 changes: 1 addition & 1 deletion client/record_host.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// RecordHost stores all methods and objects related to record:host.
Expand Down
2 changes: 1 addition & 1 deletion client/record_ptr.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// RecordPTR stores all methods and objects related to record:ptr.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/tickemaster/infoblox-go-sdk
module github.com/ticketmaster/infoblox-go-sdk

go 1.14

Expand Down
4 changes: 2 additions & 2 deletions infoblox.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"reflect"
"sync"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

// Infoblox is a helper that includes all the clients.
Expand Down
4 changes: 2 additions & 2 deletions test/infoblox_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"testing"

"github.com/tickemaster/infoblox-go-sdk"
"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk"
"github.com/ticketmaster/infoblox-go-sdk/client"
)

func TestInfobloxFetch(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package test
import (
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/client"
)

func TestFetchByNetwork(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/range_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package test
import (
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/client"
)

func TestFetchByRange(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions test/record_a_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

func TestCreateRecordA(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions test/record_cname_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

func TestCreateRecordCname(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions test/record_host_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/tickemaster/infoblox-go-sdk/model"
"github.com/ticketmaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/model"
)

func TestCreateRecordHost(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"testing"

"github.com/tickemaster/infoblox-go-sdk/client"
"github.com/ticketmaster/infoblox-go-sdk/client"
)

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

0 comments on commit 3c6ac23

Please sign in to comment.