Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Removes print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume committed Jan 9, 2024
1 parent 13f7a8c commit 5cda8eb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/heartbeat_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package tests

import (
"fmt"
"net"
"sync"
"testing"
Expand Down Expand Up @@ -106,7 +105,6 @@ func HeartbeatRequest(t *testing.T) {
if heartbeatRequestReceivedSequenceNumber != sentSequenceNumber {
t.Errorf("Heartbeat request handler was called with wrong sequence number.\n- Sent sequence number: %v\n- Received sequence number %v\n", sentSequenceNumber, heartbeatRequestReceivedSequenceNumber)
}
fmt.Printf("Remote address: %v\n", heartbeatRequestReceivedRemoteAddress)

remoteAddr := heartbeatRequestReceivedRemoteAddress.String()
if remoteAddr[:9] != "127.0.0.1" {
Expand Down

0 comments on commit 5cda8eb

Please sign in to comment.