diff options
author | Neale Ranns <nranns@cisco.com> | 2018-03-16 05:08:24 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-03-16 05:08:24 -0700 |
commit | bce6b7bcf900c72035225711c4523833ab44fd9a (patch) | |
tree | 6652f5acb968bbd4b1a7d628b6218a6217d9ab26 /test | |
parent | 8c257205b817d397787a4f1fed1ed03d731d31c8 (diff) |
remove spurious print statements from DVR tests
Change-Id: I3b1c71b144b4760922a467086fcdb410cd225c57
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_dvr.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/test_dvr.py b/test/test_dvr.py index d508a8d8b1a..c0ce32c134c 100644 --- a/test/test_dvr.py +++ b/test/test_dvr.py @@ -221,12 +221,10 @@ class TestDVR(VppTestCase): for r in routes: if (inet_pton(AF_INET, ip_tag_bridged) == r.address): - print r self.assertEqual(r.path[0].sw_if_index, sub_if_on_pg3.sw_if_index) self.assertEqual(r.path[0].is_dvr, 1) if (inet_pton(AF_INET, ip_non_tag_bridged) == r.address): - print r self.assertEqual(r.path[0].sw_if_index, self.pg1.sw_if_index) self.assertEqual(r.path[0].is_dvr, 1) |