diff options
Diffstat (limited to 'server/rpki_test.go')
-rw-r--r-- | server/rpki_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/rpki_test.go b/server/rpki_test.go index c58ef32b..ee4689af 100644 --- a/server/rpki_test.go +++ b/server/rpki_test.go @@ -54,8 +54,7 @@ func strToASParam(str string) *bgp.PathAttributeAsPath { } func validateOne(tree *radix.Tree, cidr, aspathStr string) config.RpkiValidationResultType { - r, _ := validatePath(65500, tree, cidr, strToASParam(aspathStr)) - return r + return validatePath(65500, tree, cidr, strToASParam(aspathStr)) } func TestValidate0(t *testing.T) { |