From 22e12904c994b41568ae5c392ab63df6edb52b40 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Sun, 10 Apr 2022 20:54:16 +0200 Subject: [PATCH] lib/connections: Make request tests sequential (#8263) --- lib/api/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/api_test.go b/lib/api/api_test.go index 944a01024..7b506259c 100644 --- a/lib/api/api_test.go +++ b/lib/api/api_test.go @@ -482,7 +482,7 @@ func TestAPIServiceRequests(t *testing.T) { // testHTTPRequest tries the given test case, comparing the result code, // content type, and result prefix. func testHTTPRequest(t *testing.T, baseURL string, tc httpTestCase, apikey string) { - t.Parallel() + // Should not be parallelized, as that just causes timeouts eventually with more test-cases timeout := time.Second if tc.Timeout > 0 {