Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
TheMarstonConnell committed Oct 3, 2024
1 parent 25229fe commit fbabbfe
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions x/storage/keeper/grpc_query_storage_stats_test.go
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@ package keeper_test

import (
"context"
"math/rand"
"time"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/jackalLabs/canine-chain/v4/testutil"
"github.com/jackalLabs/canine-chain/v4/x/storage/types"
"math/rand"
"time"
)

func (suite *KeeperTestSuite) TestStorageStats() {

for i := 0; i < 100; i++ {

var mm = rand.Int63n(50_000_000_000)
var fs = rand.Int63n(1_000_000_000_000)
mm := rand.Int63n(50_000_000_000)
fs := rand.Int63n(1_000_000_000_000)

suite.SetupSuite()

@@ -102,5 +102,4 @@ func (suite *KeeperTestSuite) TestStorageStats() {

suite.reset()
}

}

0 comments on commit fbabbfe

Please sign in to comment.