diff options
author | Hongjun Ni <hongjun.ni@intel.com> | 2017-11-17 23:43:11 +0800 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-11-17 10:07:40 +0000 |
commit | ad2ddb1c06f84625e4e5e5fe1748bbcc7df07e97 (patch) | |
tree | d639eb2028769d2dbeb8fcc14f6cd383bfd94baf /test/test_pppoe.py | |
parent | b8bbd6521fbab6579e4c571f61489f995f56bc78 (diff) |
Replace tap interface using general interface
Change-Id: Icd73f00162fb6aabe296c8bb6f2174ad4f6a17b7
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Diffstat (limited to 'test/test_pppoe.py')
-rw-r--r-- | test/test_pppoe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pppoe.py b/test/test_pppoe.py index 1d0aeffda37..13499a32ec8 100644 --- a/test/test_pppoe.py +++ b/test/test_pppoe.py @@ -343,7 +343,7 @@ class TestPPPoE(VppTestCase): # and we should still be able to use the original # try: - gre_if.add_vpp_config() + pppoe_if.add_vpp_config() except Exception: pass else: @@ -400,7 +400,7 @@ class TestPPPoE(VppTestCase): # and we should still be able to use the original # try: - gre_if.remove_vpp_config() + pppoe_if.remove_vpp_config() except Exception: pass else: |