diff options
Diffstat (limited to 'packet/bgp_test.go')
-rw-r--r-- | packet/bgp_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet/bgp_test.go b/packet/bgp_test.go index 59734ba4..e09ffc44 100644 --- a/packet/bgp_test.go +++ b/packet/bgp_test.go @@ -89,7 +89,8 @@ func update() *BGPMessage { NewPathAttributeMultiExitDisc(1 << 20), NewPathAttributeLocalPref(1 << 22), NewPathAttributeAtomicAggregate(), - NewPathAttributeAggregator(30002, "129.0.2.99"), + NewPathAttributeAggregator(uint32(30002), "129.0.2.99"), + NewPathAttributeAggregator(uint32(300020), "129.0.2.99"), NewPathAttributeCommunities([]uint32{1, 3}), NewPathAttributeOriginatorId("10.10.0.1"), NewPathAttributeClusterList([]string{"10.10.0.2", "10.10.0.3"}), |