From 0ff4d1b2678f266842274bff670c144b47913758 Mon Sep 17 00:00:00 2001 From: Lukas Rist Date: Sun, 22 Oct 2023 13:53:00 +0200 Subject: [PATCH] test fix --- connection/conntable_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connection/conntable_test.go b/connection/conntable_test.go index 2fef538..ff0877d 100644 --- a/connection/conntable_test.go +++ b/connection/conntable_test.go @@ -74,5 +74,5 @@ func TestFlushOlderThan(t *testing.T) { require.NotNil(t, md) table.FlushOlderThan(time.Duration(0)) m := table.Get(testck) - require.Nil(t, m) + require.Empty(t, m) }