From acf7b72aff3ee49a4d261e94071d01add070b6c4 Mon Sep 17 00:00:00 2001 From: fhackett Date: Fri, 15 Nov 2024 17:48:51 +0100 Subject: [PATCH] remove 1k connection test --- systems/locksvc/locksvc_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/systems/locksvc/locksvc_test.go b/systems/locksvc/locksvc_test.go index d448ca21..a8249670 100644 --- a/systems/locksvc/locksvc_test.go +++ b/systems/locksvc/locksvc_test.go @@ -162,6 +162,10 @@ func Test5Clients(t *testing.T) { testNClients(t, 5) } +func Test20Clients(t *testing.T) { + testNClients(t, 20) +} + func Test1000Clients(t *testing.T) { testNClients(t, 1000) }