From e958075525db052de0238de0742b069f40d1286b Mon Sep 17 00:00:00 2001 From: Alex Stockinger Date: Tue, 28 Jun 2022 18:11:48 +0000 Subject: [PATCH] Fix test --- pkg/mesh/routes_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mesh/routes_test.go b/pkg/mesh/routes_test.go index 648ce0e..cd4ce65 100644 --- a/pkg/mesh/routes_test.go +++ b/pkg/mesh/routes_test.go @@ -1086,7 +1086,7 @@ func TestRoutes(t *testing.T) { }, }, } { - routes, rules := tc.topology.Routes(DefaultKiloInterface, kiloIface, privIface, tunlIface, tc.local, encapsulation.NewIPIP(tc.strategy)) + routes, rules := tc.topology.Routes(DefaultKiloInterface, kiloIface, privIface, tunlIface, tc.local, encapsulation.NewIPIP(tc.strategy, true)) if diff := pretty.Compare(routes, tc.routes); diff != "" { t.Errorf("test case %q: got diff: %v", tc.name, diff) }