Skip to content

Commit

Permalink
fix: remove duplicate declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
rootulp committed Nov 29, 2023
1 parent 08abac3 commit 1480500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/util/testnode/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
)

const (
kibibyte = 1024
mebibyte = kibibyte * 1024
kibibyte = 1024 // bytes
mebibyte = 1_048_576 // bytes
DefaultValidatorAccountName = "validator"
)

Expand Down
4 changes: 0 additions & 4 deletions test/util/testnode/full_node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ import (
coretypes "github.com/tendermint/tendermint/rpc/core/types"
)

const (
kibibyte = 1024
)

func TestIntegrationTestSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping full node integration test in short mode.")
Expand Down

0 comments on commit 1480500

Please sign in to comment.