diff options
author | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-04-22 15:08:01 +0900 |
---|---|---|
committer | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-04-22 15:08:01 +0900 |
commit | 33b4422cc724e5c866bd741597490bd2ff5f6789 (patch) | |
tree | af45aa847107598eb9c89c41ec8f2bf3f1bdc49c /policy | |
parent | 897ad184ae319837e00318b7902c7c96db6a17ff (diff) |
unit_test: fix associated with the testify update
Diffstat (limited to 'policy')
-rw-r--r-- | policy/policy.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/policy/policy.go b/policy/policy.go index bcbc5f82..9dc3632e 100644 --- a/policy/policy.go +++ b/policy/policy.go @@ -29,7 +29,7 @@ import ( type RouteType int const ( - ROUTE_TYPE_NONE = iota + ROUTE_TYPE_NONE RouteType = iota ROUTE_TYPE_ACCEPT ROUTE_TYPE_REJECT ) @@ -161,7 +161,7 @@ func (c *PrefixConditions) evaluatePrefix(path table.Path) bool { for _, cp := range c.PrefixList { if IpPrefixCalculate(path, cp) { - log.Debug("prefix matched : ",cp) + log.Debug("prefix matched : ", cp) return true } } |