We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 870b11c + 95bcaad commit e89b056Copy full SHA for e89b056
.golangci.toml
@@ -0,0 +1,4 @@
1
+[linters]
2
+enable = [
3
+ "goimports",
4
+]
models/sequential_height_test.go
@@ -1,9 +1,10 @@
package models
import (
- "github.com/stretchr/testify/require"
5
"math"
6
"testing"
+
7
+ "github.com/stretchr/testify/require"
8
)
9
10
func TestSequentialHeight(t *testing.T) {
services/requester/rotation_signer_test.go
@@ -2,12 +2,13 @@ package requester
"fmt"
+ "sync"
+ "testing"
"github.com/onflow/flow-go-sdk/crypto"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
11
"golang.org/x/exp/maps"
- "sync"
- "testing"
12
13
14
func Test_KeyRotation(t *testing.T) {
0 commit comments