diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-17 08:42:58 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-18 14:06:38 +0000 |
commit | b5f15bddc5dced2df811f5e6b9a0dc396f6ff6cd (patch) | |
tree | df06c32255c038f8869f7bd49daf3a4dba103496 /test | |
parent | e2e8f02165f27ae04e6d20ce0c628e29271a8db6 (diff) |
Tests: Trivial. Define constants once.
Change-Id: Iaf106962598d04708e8740e016d5c55ff35432c9
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/vpp_papi_provider.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 98fbb2f9723..95c22dd2104 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -15,10 +15,7 @@ from vpp_papi import VPP, mac_pton from hook import Hook from vpp_l2 import L2_PORT_TYPE - -# from vnet/vnet/mpls/mpls_types.h -MPLS_IETF_MAX_LABEL = 0xfffff -MPLS_LABEL_INVALID = MPLS_IETF_MAX_LABEL + 1 +from vpp_ip_route import MPLS_IETF_MAX_LABEL, MPLS_LABEL_INVALID class L2_VTR_OP: |