summaryrefslogtreecommitdiffhomepage
path: root/table/destination_test.go
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-12 21:18:08 +0900
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-16 16:25:24 +0900
commitb344eb3777e5088f0a97d585e81e546363ea4101 (patch)
tree16def797a39da2bf6d61fa30e664b699fc561247 /table/destination_test.go
parent49ec4a328fd2e1bdc81797f150089818031ae6e1 (diff)
table: kill unused field medSetByTargetNeighbor
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/destination_test.go')
-rw-r--r--table/destination_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/table/destination_test.go b/table/destination_test.go
index 105d7104..a606cff6 100644
--- a/table/destination_test.go
+++ b/table/destination_test.go
@@ -81,7 +81,7 @@ func DestCreatePath(peerD []*PeerInfo) []*Path {
nlriList := updateMsgD.NLRI
pathAttributes := updateMsgD.PathAttributes
nlri_info := nlriList[0]
- pathD[i] = NewPath(peerD[i], nlri_info, false, pathAttributes, false, time.Now(), false)
+ pathD[i] = NewPath(peerD[i], nlri_info, false, pathAttributes, time.Now(), false)
}
return pathD
}