aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/go/internal/vespa/document/http_test.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/client/go/internal/vespa/document/http_test.go b/client/go/internal/vespa/document/http_test.go
index 8fb0b1b2b95..95af5f997f4 100644
--- a/client/go/internal/vespa/document/http_test.go
+++ b/client/go/internal/vespa/document/http_test.go
@@ -297,13 +297,9 @@ func BenchmarkClientSendSmallUncompressed(b *testing.B) {
}
func BenchmarkClientSendMediumUncompressed(b *testing.B) {
- benchmarkClientSend(b, CompressionNone, makeDocument(10))
+ benchmarkClientSend(b, CompressionNone, makeDocument(1000))
}
func BenchmarkClientSendMediumGzip(b *testing.B) {
benchmarkClientSend(b, CompressionGzip, makeDocument(1000))
}
-
-func BenchmarkClientSendLargeGzip(b *testing.B) {
- benchmarkClientSend(b, CompressionGzip, makeDocument(10000))
-}