use EGRESS_DIRECTION and INGRESS_DIRECTION from neutron-lib
The EGRESS_DIRECTION and INGRESS_DIRECTION constants live in neutron-lib
now and neutron is going to consume them in
I1b81f5c3de9e6f2c0967c2db23ddb716ee7ec6b9
This patch removes the EGRESS_DIRECTION, INGRESS_DIRECTION and
VALID_DIRECTIONS constants from common.constants as they are already
defined and use from neutron-lib.
Change-Id: I52841ecd716f6dbf87fc4c5543d68ba378edbeea
diff --git a/neutron_tempest_plugin/common/constants.py b/neutron_tempest_plugin/common/constants.py
index 4ad780d..4dc7844 100644
--- a/neutron_tempest_plugin/common/constants.py
+++ b/neutron_tempest_plugin/common/constants.py
@@ -123,10 +123,6 @@
# agent has just returned to alive after being dead
AGENT_REVIVED = 'revived'
-INGRESS_DIRECTION = 'ingress'
-EGRESS_DIRECTION = 'egress'
-
-VALID_DIRECTIONS = (INGRESS_DIRECTION, EGRESS_DIRECTION)
VALID_ETHERTYPES = (lib_constants.IPv4, lib_constants.IPv6)
IP_ALLOWED_VERSIONS = [lib_constants.IP_VERSION_4, lib_constants.IP_VERSION_6]