@@ -11,6 +11,7 @@ import (
11
11
12
12
"github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/ibcwasm"
13
13
wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing"
14
+ mock "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/mock"
14
15
"github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"
15
16
clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
16
17
commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types"
@@ -19,7 +20,6 @@ import (
19
20
"github.com/cosmos/ibc-go/v7/modules/core/exported"
20
21
solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine"
21
22
ibctesting "github.com/cosmos/ibc-go/v7/testing"
22
- ibcmock "github.com/cosmos/ibc-go/v7/testing/mock"
23
23
)
24
24
25
25
func (suite * TypesTestSuite ) TestStatus () {
@@ -137,7 +137,7 @@ func (suite *TypesTestSuite) TestGetTimestampAtHeight() {
137
137
{
138
138
"error: invalid height" ,
139
139
func () {
140
- height = ibcmock .Height {}
140
+ height = mock .Height {}
141
141
},
142
142
ibcerrors .ErrInvalidType ,
143
143
},
@@ -438,14 +438,14 @@ func (suite *TypesTestSuite) TestVerifyMembership() {
438
438
{
439
439
"invalid path argument" ,
440
440
func () {
441
- path = ibcmock .KeyPath {}
441
+ path = mock .KeyPath {}
442
442
},
443
443
ibcerrors .ErrInvalidType ,
444
444
},
445
445
{
446
446
"proof height is invalid type" ,
447
447
func () {
448
- proofHeight = ibcmock .Height {}
448
+ proofHeight = mock .Height {}
449
449
},
450
450
ibcerrors .ErrInvalidType ,
451
451
},
@@ -579,14 +579,14 @@ func (suite *TypesTestSuite) TestVerifyNonMembership() {
579
579
{
580
580
"invalid path argument" ,
581
581
func () {
582
- path = ibcmock .KeyPath {}
582
+ path = mock .KeyPath {}
583
583
},
584
584
ibcerrors .ErrInvalidType ,
585
585
},
586
586
{
587
587
"proof height is invalid type" ,
588
588
func () {
589
- proofHeight = ibcmock .Height {}
589
+ proofHeight = mock .Height {}
590
590
},
591
591
ibcerrors .ErrInvalidType ,
592
592
},
0 commit comments