Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CreatureDev committed Feb 19, 2024
1 parent 88ec97d commit 7f6fe94
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion binary-codec/types/account_id_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package types
import (
"testing"

"github.com/CreatureDev/xrpl-go/model/transactions/types"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/transactions/types"
)

func TestAccountIDFromJson(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions binary-codec/types/hash128.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/hex"
"strings"

"github.com/xyield/xrpl-go/binary-codec/serdes"
"github.com/xyield/xrpl-go/model/transactions/types"
"github.com/CreatureDev/xrpl-go/binary-codec/serdes"
"github.com/CreatureDev/xrpl-go/model/transactions/types"
)

var _ hashI = (*Hash128)(nil)
Expand Down
2 changes: 1 addition & 1 deletion binary-codec/types/hash128_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package types
import (
"testing"

"github.com/CreatureDev/xrpl-go/model/transactions/types"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/transactions/types"
)

func TestHash128FromJson(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion binary-codec/types/hash160.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/hex"
"strings"

"github.com/xyield/xrpl-go/binary-codec/serdes"
"github.com/CreatureDev/xrpl-go/binary-codec/serdes"
)

var _ hashI = (*Hash128)(nil)
Expand Down
4 changes: 2 additions & 2 deletions binary-codec/types/hash256.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/hex"
"strings"

"github.com/xyield/xrpl-go/binary-codec/serdes"
"github.com/xyield/xrpl-go/model/transactions/types"
"github.com/CreatureDev/xrpl-go/binary-codec/serdes"
"github.com/CreatureDev/xrpl-go/model/transactions/types"
)

var _ hashI = (*Hash256)(nil)
Expand Down
2 changes: 1 addition & 1 deletion binary-codec/types/hash256_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"testing"

"github.com/CreatureDev/xrpl-go/model/transactions/types"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/transactions/types"
)

func TestHash256FromJson(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions binary-codec/types/st_array_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"strings"
"testing"

"github.com/CreatureDev/xrpl-go/model/ledger"
"github.com/CreatureDev/xrpl-go/model/transactions"
"github.com/CreatureDev/xrpl-go/model/transactions/types"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/ledger"
"github.com/xyield/xrpl-go/model/transactions"
"github.com/xyield/xrpl-go/model/transactions/types"
)

func TestSTArrayFromJson(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions binary-codec/types/uint16_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package types
import (
"testing"

"github.com/CreatureDev/xrpl-go/model/ledger"
"github.com/CreatureDev/xrpl-go/model/transactions"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/ledger"
"github.com/xyield/xrpl-go/model/transactions"
)

func TestUInt16FromJson(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion binary-codec/types/uint32_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package types
import (
"testing"

"github.com/CreatureDev/xrpl-go/model/transactions/types"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/model/transactions/types"
)

func TestUint32FromJson(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion binary-codec/types/uint8_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package types
import (
"testing"

"github.com/CreatureDev/xrpl-go/binary-codec/definitions"
"github.com/stretchr/testify/require"
"github.com/xyield/xrpl-go/binary-codec/definitions"
)

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

0 comments on commit 7f6fe94

Please sign in to comment.