summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--satp/packet_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/satp/packet_test.go b/satp/packet_test.go
index 3640570..ffff08e 100644
--- a/satp/packet_test.go
+++ b/satp/packet_test.go
@@ -166,7 +166,7 @@ func TestPlainPacketWriteTo(t *testing.T) {
func generateRandomTestDataPlainPacket() (payloadType uint16, payload []byte) {
payloadType = uint16(tRand.Uint32())
- packetLen := uint(2 + tRand.Int31n(PACKET_BUFFER_SIZE-2))
+ packetLen := uint(tRand.Int31n(PACKET_BUFFER_SIZE - 2))
payload = make([]byte, packetLen)
tRand.Read(payload)
return