diff --git a/internal/updater/resolver/ips_test.go b/internal/updater/resolver/ips_test.go index 7879b8ac..bd34bd91 100644 --- a/internal/updater/resolver/ips_test.go +++ b/internal/updater/resolver/ips_test.go @@ -35,7 +35,7 @@ func Test_uniqueIPsToSlice(t *testing.T) { t.Run(name, func(t *testing.T) { t.Parallel() outputIPs := uniqueIPsToSlice(testCase.inputIPs) - assert.Equal(t, testCase.outputIPs, outputIPs) + assert.ElementsMatch(t, testCase.outputIPs, outputIPs) }) } }