From 0008579c554dd5d66a343ea4c727b75ad68d4ee5 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 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/systems/locksvc/locksvc_test.go b/systems/locksvc/locksvc_test.go index d448ca21..bcef7cff 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 Test1000Clients(t *testing.T) { - testNClients(t, 1000) +func Test20Clients(t *testing.T) { + testNClients(t, 20) } + +// func Test1000Clients(t *testing.T) { +// testNClients(t, 1000) +// }