Remove checks for TF while setting status
Now in tempest config we have health_monitor_enabled=False
It means, that we don't add special checks for TF backend in this
part of code. In this case with TF enabled operating status
should be NO_MONITOR.
Related-Prod: PRODX-11775
Change-Id: If81e1749d5d0afa97e9869eb7c6fc4df3f044db0
diff --git a/octavia_tempest_plugin/tests/api/v2/test_member.py b/octavia_tempest_plugin/tests/api/v2/test_member.py
index 610363b..34a1938 100644
--- a/octavia_tempest_plugin/tests/api/v2/test_member.py
+++ b/octavia_tempest_plugin/tests/api/v2/test_member.py
@@ -606,8 +606,7 @@
CONF.load_balancer.build_timeout,
pool_id=self.pool_id)
status = const.OFFLINE
- if (not monitor or CONF.load_balancer.test_with_noop) and \
- provider != 'tungstenfabric':
+ if not monitor or CONF.load_balancer.test_with_noop:
status = const.NO_MONITOR
member = waiters.wait_for_status(
self.mem_member_client.show_member,