Skip to content

Commit f9f0bdc

Browse files
committed
chore: fix linter import
1 parent 1802e83 commit f9f0bdc

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

x/logic/keeper/grpc_query_ask_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"testing"
99

1010
"github.com/golang/mock/gomock"
11+
1112
. "github.com/smartystreets/goconvey/convey"
1213

1314
sdkmath "cosmossdk.io/math"

x/logic/util/pointer.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package util
22

33
import (
4-
sdkmath "cosmossdk.io/math"
54
"reflect"
5+
6+
sdkmath "cosmossdk.io/math"
67
)
78

89
// DerefOrDefault returns the value of the pointer if it is not nil, otherwise returns the default value.

x/logic/util/pointer_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
package util
22

33
import (
4-
sdkmath "cosmossdk.io/math"
54
"fmt"
65
"testing"
76

7+
sdkmath "cosmossdk.io/math"
8+
89
. "github.com/smartystreets/goconvey/convey"
10+
11+
sdkmath "cosmossdk.io/math"
912
)
1013

1114
func TestDerefOrDefault(t *testing.T) {

0 commit comments

Comments
 (0)