Skip to content

Commit

Permalink
fixup! Fix misc lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ppopth committed Aug 14, 2024
1 parent 3ae4239 commit 8e49e05
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gossipsub_spam_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,8 @@ func TestGossipsubAttackSpamIDONTWANT(t *testing.T) {
})
time.Sleep(100 * time.Millisecond)
if err := psubs[0].Publish(topic, data); err != nil {
t.Fatal(err)
t.Error(err)
return // cannot call t.Fatal in a non-test goroutine
}
}()
}
Expand Down

0 comments on commit 8e49e05

Please sign in to comment.