bluetooth: Change resume timeout to match suspend

Suspend timeout was set to a value much greater than resume time so
waiting for resume was failing once we enforced the timeout. Change the
resume parameter to match the suspend parameter.

BUG=b:176182742
TEST=Ran bluetooth_AdapterCLHealth

Change-Id: Iea9446054c4f966d09f1094999a40266e1fcb373
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2601620
Tested-by: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
Reviewed-by: Daniel Winkler <danielwinkler@google.com>
Commit-Queue: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
diff --git a/server/cros/bluetooth/bluetooth_adapter_tests.py b/server/cros/bluetooth/bluetooth_adapter_tests.py
index b8c724c..a8bd830 100644
--- a/server/cros/bluetooth/bluetooth_adapter_tests.py
+++ b/server/cros/bluetooth/bluetooth_adapter_tests.py
@@ -1036,7 +1036,7 @@
         # lenient with the resume time here
         self.test_wait_for_resume(boot_id,
                                   suspend,
-                                  resume_timeout=self.RESUME_TIME_SECS,
+                                  resume_timeout=suspend_time,
                                   test_start_time=start_time)