diff --git a/relay/server_test.go b/relay/server_test.go index e5990cc84..462ea7e9f 100644 --- a/relay/server_test.go +++ b/relay/server_test.go @@ -2,7 +2,6 @@ package relay import ( "context" - "fmt" "math/rand" "testing" "time" @@ -396,9 +395,8 @@ func TestReadWriteChunks(t *testing.T) { expectedData := make(map[v2.BlobKey][]*encoding.Frame) fragmentInfoMap := make(map[v2.BlobKey]*encoding.FragmentInfo) - blobCount := 100 // TODO revert this to 10 + blobCount := 10 for i := 0; i < blobCount; i++ { - fmt.Printf("blob %d\n", i) // TODO remove this header, _, chunks := randomBlobChunks(t) blobKey, err := header.BlobKey()