diff options
Diffstat (limited to 'table/path_test.go')
-rw-r--r-- | table/path_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/table/path_test.go b/table/path_test.go index 786dad26..51fe6328 100644 --- a/table/path_test.go +++ b/table/path_test.go @@ -57,9 +57,9 @@ func TestPathIPv6GetDefault(t *testing.T) { } func TestPathGetRouteFamily(t *testing.T) { - pd := &PathDefault{routeFamily: RF_IPv6_UC} + pd := &PathDefault{routeFamily: bgp.RF_IPv6_UC} rf := pd.GetRouteFamily() - assert.Equal(t, rf, RF_IPv6_UC) + assert.Equal(t, rf, bgp.RF_IPv6_UC) } func TestPathSetSource(t *testing.T) { |