Changing initial Tx power to -5 dBm am: 9c4a7d63cc

Original change: https://android-review.googlesource.com/c/platform/tools/test/connectivity/+/2005061

Change-Id: If52431ebe76047e762755a78c8a49f0f9b8edd31
diff --git a/acts/framework/acts/controllers/cellular_lib/BaseSimulation.py b/acts/framework/acts/controllers/cellular_lib/BaseSimulation.py
index 20533a4..7427628 100644
--- a/acts/framework/acts/controllers/cellular_lib/BaseSimulation.py
+++ b/acts/framework/acts/controllers/cellular_lib/BaseSimulation.py
@@ -269,13 +269,13 @@
         # Wait until it goes to communication state
         self.simulator.wait_until_communication_state()
 
-        # Set uplink power to a minimum before going to the actual desired
+        # Set uplink power to a low value before going to the actual desired
         # value. This avoid inconsistencies produced by the hysteresis in the
         # PA switching points.
-        self.log.info('Setting UL power to -30 dBm before going to the '
+        self.log.info('Setting UL power to -5 dBm before going to the '
                       'requested value to avoid incosistencies caused by '
                       'hysteresis.')
-        self.set_uplink_tx_power(-30)
+        self.set_uplink_tx_power(-5)
 
         # Set signal levels obtained from the test parameters
         self.set_downlink_rx_power(self.sim_dl_power)