From 29ba1b03724ccdaf7f476792a94b73e7a3bd2522 Mon Sep 17 00:00:00 2001 From: Vallery Lancey Date: Thu, 4 Apr 2019 13:09:15 -0700 Subject: [PATCH] Fixed old function signature in kube-proxy tests. --- pkg/proxy/ipvs/proxier_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index 3862124d47f..5c37aad5c9d 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -267,7 +267,7 @@ func TestCleanupLeftovers(t *testing.T) { fp.syncProxyRules() // test cleanup left over - if CleanupLeftovers(ipvs, ipt, ipset, true) { + if CleanupLeftovers(ipvs, ipt, ipset) { t.Errorf("Cleanup leftovers failed") } }