From 2b84f218b954b2c60ba9a7be4a43a20488f040d4 Mon Sep 17 00:00:00 2001 From: Cody Littley Date: Wed, 27 Nov 2024 11:04:02 -0600 Subject: [PATCH] Cleanup test Signed-off-by: Cody Littley --- relay/server_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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()