Skip to content

Commit

Permalink
fix: remove duplicate import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
troykessler committed Apr 18, 2024
1 parent 0739309 commit c499ed3
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion evidence/pool_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package evidence_test

import (
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"
"os"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion evidence/verify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package evidence_test

import (
"bytes"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"
"testing"
"time"

Expand Down
2 changes: 1 addition & 1 deletion light/helpers_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package light_test

import (
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"
"time"

"github.com/KYVENetwork/cometbft/v34/crypto"
Expand Down
2 changes: 1 addition & 1 deletion light/store/db/db_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package db

import (
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 4 in light/store/db/db_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"sync"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion state/execution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package state_test

import (
"context"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 5 in state/execution_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"testing"
"time"

Expand Down
2 changes: 1 addition & 1 deletion state/rollback_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package state_test

import (
"crypto/rand"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"
"testing"

dbm "github.com/cometbft/cometbft-db"
Expand Down
2 changes: 1 addition & 1 deletion statesync/syncer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package statesync

import (
"errors"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"
"testing"
"time"

Expand Down
2 changes: 1 addition & 1 deletion store/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"encoding/json"
"fmt"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 7 in store/store_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"os"
"runtime/debug"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion types/block_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
// number generator here and we can run the tests a bit faster
"crypto/rand"
"encoding/hex"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 8 in types/block_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"math"
"os"
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion types/evidence_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package types

import (
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 4 in types/evidence_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"math"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion types/light_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package types

import (
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/v34/version"
cmtversion "github.com/KYVENetwork/cometbft/v34/proto/cometbft/v34/version"

Check failure on line 4 in types/light_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `goimports`-ed (goimports)
"math"
"testing"
"time"
Expand Down

0 comments on commit c499ed3

Please sign in to comment.