diff options
author | Gabriel Ganne <gabriel.ganne@enea.com> | 2017-10-24 15:18:57 +0200 |
---|---|---|
committer | Gabriel Ganne <gabriel.ganne@enea.com> | 2017-10-24 15:35:48 +0200 |
commit | aa0dda48ac69ec3af846355f24a7d84ec2cd2882 (patch) | |
tree | cec572795904e1abd00a7628fae926639cf8fe7c /test | |
parent | 71612d61930e57e7c8ebf9e5647b15a4b23720b2 (diff) |
fix test_lb_ip4_gre6() cleanup
missing "del" keyword, and as a result, we were trying to add the as
twice.
Change-Id: If78ce03f0c71591c05ff6f4748fd9c929d0f861f
Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_lb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_lb.py b/test/test_lb.py index e5802d990e9..db4d46b2ded 100644 --- a/test/test_lb.py +++ b/test/test_lb.py @@ -195,7 +195,7 @@ class TestLB(VppTestCase): self.checkCapture(gre4=False, isv4=True) finally: for asid in self.ass: - self.vapi.cli("lb as 90.0.0.0/8 2002::%u" % (asid)) + self.vapi.cli("lb as 90.0.0.0/8 2002::%u del" % (asid)) self.vapi.cli("lb vip 90.0.0.0/8 encap gre6 del") def test_lb_ip6_gre6(self): |