summaryrefslogtreecommitdiffhomepage
path: root/internal/pkg/table/path_test.go
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-07-10 14:06:08 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-08-08 21:24:48 +0900
commit71e56c542e6a167dc3cd983aae2881a3c24c162a (patch)
treea449e3ed0889940fe47bb5f4ffca91228a4cc7e8 /internal/pkg/table/path_test.go
parent3dc23d3075f13f2976afd255ef2fd9b1410acc77 (diff)
rpc cleanup
- clean up RPC function names - rewrite gobgp command to use the api instead of config package - delete unused client package Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'internal/pkg/table/path_test.go')
-rw-r--r--internal/pkg/table/path_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pkg/table/path_test.go b/internal/pkg/table/path_test.go
index 449c4a8e..421502fa 100644
--- a/internal/pkg/table/path_test.go
+++ b/internal/pkg/table/path_test.go
@@ -205,7 +205,7 @@ func TestPathPrependAsnToFullPathAttr(t *testing.T) {
origin := bgp.NewPathAttributeOrigin(0)
asns := make([]uint16, 255)
- for i, _ := range asns {
+ for i := range asns {
asns[i] = 65000 + uint16(i)
}