Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sirotin committed Jun 23, 2024
1 parent 42f5938 commit 456122b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/transport/fleet_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package transport

import (
"testing"

"github.com/brianvoe/gofakeit/v6"
"github.com/stretchr/testify/require"
"testing"
)

func TestFleets(t *testing.T) {
Expand All @@ -15,7 +16,7 @@ func TestFleets(t *testing.T) {
require.True(t, ok)
require.Equal(t, fleets[ShardsTest], enr)

enr, ok = FleetENRTree(WakuTest)
_, ok = FleetENRTree(WakuTest)
require.False(t, ok) // We know this fleet, but it's not supported
}

Expand Down

0 comments on commit 456122b

Please sign in to comment.