From d97cd45b22a66ebd0dd526d03a3c8cdd47c01190 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Tue, 24 Feb 2026 21:52:27 +0100 Subject: [PATCH] Relax TestMACMappingPerformance limit --- pkg/service/datastore/upnp_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/service/datastore/upnp_integration_test.go b/pkg/service/datastore/upnp_integration_test.go index 8125529..6f53e43 100644 --- a/pkg/service/datastore/upnp_integration_test.go +++ b/pkg/service/datastore/upnp_integration_test.go @@ -380,7 +380,7 @@ func TestMACMappingPerformance(t *testing.T) { if updateDuration > time.Millisecond*100 { t.Errorf("Update performance too slow: %v", updateDuration) } - if lookupDuration > time.Millisecond*50 { + if lookupDuration > time.Millisecond*70 { t.Errorf("Lookup performance too slow: %v", lookupDuration) } }