Skip to content

Commit

Permalink
test:fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
bysomeone committed Sep 13, 2023
1 parent fa0e210 commit 1817c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/p2p/dht/extension/mdns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ func Test_mdns(t *testing.T) {
defer cancel()

hosts := getNetHosts(2, t)
tmdns, err := NewMDNS(ctx, hosts[0], "33test123")
_, err := NewMDNS(ctx, hosts[0], "33test123")
require.Nil(t, err)
tmdns, err = NewMDNS(ctx, hosts[1], "33test123")
tmdns, err := NewMDNS(ctx, hosts[1], "33test123")
require.Nil(t, err)

select {
Expand Down

0 comments on commit 1817c11

Please sign in to comment.