2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/peer_protocol/protocol_test.go

13 lines
182 B
Go

package peer_protocol
import (
"testing"
)
func TestConstants(t *testing.T) {
// check that iota works as expected in the const block
if NotInterested != 3 {
t.FailNow()
}
}