diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-19 16:52:27 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-03-19 17:56:54 +0000 |
commit | 2e2c91f9256ff06cb79bc9816772e098dd6b7987 (patch) | |
tree | 2f87d5541b37ece1df39057026a02440692eda67 /test/vpp_papi_provider.py | |
parent | 91f17dc7c4e79343b8fba924e7cea6380a0e6653 (diff) |
Revert "tests: Deprecate the use of CLI commands in tests."
This reverts commit e2e8f02165f27ae04e6d20ce0c628e29271a8db6.
Change-Id: Ie23dcb8a5b3e96f77e0d117a6887c43064c79669
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 95c22dd2104..9133683d402 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -9,10 +9,8 @@ import os import time from collections import deque -import deprecation from six import moves, iteritems from vpp_papi import VPP, mac_pton - from hook import Hook from vpp_l2 import L2_PORT_TYPE from vpp_ip_route import MPLS_IETF_MAX_LABEL, MPLS_LABEL_INVALID @@ -389,9 +387,6 @@ class VppPapiProvider(object): self.hook.after_api(api_fn.__name__, api_args) return reply - @deprecation.deprecated( - deprecated_in="19.04", removed_in="19.07", - details="Use the Corresponding API function instead.") def cli(self, cli): """ Execute a CLI, calling the before/after hooks appropriately. |