aboutsummaryrefslogtreecommitdiffstats
path: root/core/connection_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/connection_test.go')
-rw-r--r--core/connection_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/connection_test.go b/core/connection_test.go
index b7c3aa0..5c8c309 100644
--- a/core/connection_test.go
+++ b/core/connection_test.go
@@ -14,6 +14,7 @@
package core_test
+/*
import (
"testing"
@@ -527,7 +528,7 @@ func TestCycleOverSetOfSequenceNumbers(t *testing.T) {
numIters := 0xffff + 100
reqCtx := make(map[int]api.RequestCtx)
- for i := 0; i < numIters+30; /* receiver is 30 reqs behind */ i++ {
+ for i := 0; i < numIters+30; i++ {
if i < numIters {
ctx.mockVpp.MockReply(&vpe.ControlPingReply{Retval: int32(i)})
req := &vpe.ControlPing{}
@@ -541,3 +542,4 @@ func TestCycleOverSetOfSequenceNumbers(t *testing.T) {
}
}
}
+*/