test(vip): fix errcheck lint in DHCPv4 backoff test

Signed-off-by: Maximilian Rink <maximilian.rink@telekom.de>
This commit is contained in:
Maximilian Rink
2026-08-23 23:50:38 +02:00
parent b034c81bef
commit b0b12cfc13

View File

@@ -19,7 +19,7 @@ func TestDHCPv4BackoffExhaustionDoesNotDeadlock(t *testing.T) {
done := make(chan struct{})
go func() {
client.requestWithBackoff(context.Background())
_, _ = client.requestWithBackoff(context.Background())
close(done)
}()