aboutsummaryrefslogtreecommitdiff
path: root/server_test.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2023-05-23 10:14:50 +0200
committerGravatar Erik Dubbelboer <erik@dubbelboer.com> 2023-05-23 10:14:50 +0200
commit829f5b2445280bf75f2a06d9ac085ba28e7422ec (patch)
tree0197ee2c81444764ed2bc5afc1a383e3c3a4e225 /server_test.go
parentRemove invalid documentation (diff)
downloadfasthttp-829f5b2445280bf75f2a06d9ac085ba28e7422ec.tar.gz
fasthttp-829f5b2445280bf75f2a06d9ac085ba28e7422ec.tar.bz2
fasthttp-829f5b2445280bf75f2a06d9ac085ba28e7422ec.zip
Don't run test that times out often in parallel
Diffstat (limited to 'server_test.go')
-rw-r--r--server_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/server_test.go b/server_test.go
index 18cc926..d8f6d65 100644
--- a/server_test.go
+++ b/server_test.go
@@ -3810,8 +3810,6 @@ func TestStreamRequestBody(t *testing.T) {
}
func TestStreamRequestBodyExceedMaxSize(t *testing.T) {
- t.Parallel()
-
part1 := strings.Repeat("1", 1<<18)
part2 := strings.Repeat("2", 1<<20-1<<18)
contentLength := len(part1) + len(part2)