From 8160a3efc3d75bb927f4be8b19f640690369987b Mon Sep 17 00:00:00 2001 From: Kazuyoshi Kato Date: Fri, 29 Apr 2022 22:50:20 +0000 Subject: [PATCH] Reduce the number of the concurrent HTTP requests in TestUserNamespaces Signed-off-by: Kazuyoshi Kato --- integration/client/container_linux_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/integration/client/container_linux_test.go b/integration/client/container_linux_test.go index ac6d2ea34..9fd76e0b8 100644 --- a/integration/client/container_linux_test.go +++ b/integration/client/container_linux_test.go @@ -1117,7 +1117,6 @@ func TestContainerKillInitPidHost(t *testing.T) { } func TestUserNamespaces(t *testing.T) { - t.Parallel() t.Run("WritableRootFS", func(t *testing.T) { testUserNamespaces(t, false) }) // see #1373 and runc#1572 t.Run("ReadonlyRootFS", func(t *testing.T) { testUserNamespaces(t, true) })