File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
sdk "github.com/cosmos/cosmos-sdk/types"
12
12
)
13
13
14
- func PrepareCleanup (t * testing.T ) {
14
+ func prepareCleanup (t * testing.T ) {
15
15
// preserve current Bech32 settings and restore them after test completion
16
16
x , y := sdk .GetConfig ().GetBech32AccountAddrPrefix (), sdk .GetConfig ().GetBech32AccountPubPrefix ()
17
17
c := sdk .IsAddrCacheEnabled ()
@@ -29,7 +29,7 @@ func PrepareCleanup(t *testing.T) {
29
29
30
30
func TestBuildContractAddressClassic (t * testing.T ) {
31
31
// set cleanup function
32
- PrepareCleanup (t )
32
+ prepareCleanup (t )
33
33
// prepare test data
34
34
specs := []struct {
35
35
codeId uint64
@@ -71,7 +71,7 @@ func TestBuildContractAddressClassic(t *testing.T) {
71
71
72
72
func TestBuildContractAddressPredictable (t * testing.T ) {
73
73
// set cleanup function
74
- PrepareCleanup (t )
74
+ prepareCleanup (t )
75
75
// test vectors generated via cosmjs: https://github.com/cosmos/cosmjs/pull/1253/files
76
76
type Spec struct {
77
77
In struct {
You can’t perform that action at this time.
0 commit comments