diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-12 21:18:08 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-16 16:25:24 +0900 |
commit | b344eb3777e5088f0a97d585e81e546363ea4101 (patch) | |
tree | 16def797a39da2bf6d61fa30e664b699fc561247 /table/table_test.go | |
parent | 49ec4a328fd2e1bdc81797f150089818031ae6e1 (diff) |
table: kill unused field medSetByTargetNeighbor
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/table_test.go')
-rw-r--r-- | table/table_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/table_test.go b/table/table_test.go index f957cef1..9cec4133 100644 --- a/table/table_test.go +++ b/table/table_test.go @@ -107,7 +107,7 @@ func TableCreatePath(peerT []*PeerInfo) []*Path { nlriList := updateMsgT.NLRI pathAttributes := updateMsgT.PathAttributes nlri_info := nlriList[0] - pathT[i] = NewPath(peerT[i], nlri_info, false, pathAttributes, false, time.Now(), false) + pathT[i] = NewPath(peerT[i], nlri_info, false, pathAttributes, time.Now(), false) } return pathT } |