diff options
author | Girish Moturu <gmoturu@google.com> | 2020-07-15 20:17:57 -0700 |
---|---|---|
committer | Girish Moturu <gmoturu@google.com> | 2020-07-15 20:17:57 -0700 |
commit | 594bdbec92319170e0d95ba1d8d584273d6c58cd (patch) | |
tree | 5798a28144c35e956744cd56a6041cfb2f9d82be | |
parent | 585ed8217f1036fff15e1dde1a3b94250b1a06da (diff) | |
download | platform_tools_test_connectivity-594bdbec92319170e0d95ba1d8d584273d6c58cd.tar.gz platform_tools_test_connectivity-594bdbec92319170e0d95ba1d8d584273d6c58cd.tar.bz2 platform_tools_test_connectivity-594bdbec92319170e0d95ba1d8d584273d6c58cd.zip |
[wifi_p2p_test_utils] Increase ping countandroid11-dev
Bug: 161394945
Fixes: 161394945
Test: None
Change-Id: I5cd6695ae1ca6c195137ed103c9b091901e40599
-rwxr-xr-x | acts/framework/acts/test_utils/wifi/p2p/wifi_p2p_test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acts/framework/acts/test_utils/wifi/p2p/wifi_p2p_test_utils.py b/acts/framework/acts/test_utils/wifi/p2p/wifi_p2p_test_utils.py index abd186f0d3..a4456a59bd 100755 --- a/acts/framework/acts/test_utils/wifi/p2p/wifi_p2p_test_utils.py +++ b/acts/framework/acts/test_utils/wifi/p2p/wifi_p2p_test_utils.py @@ -75,7 +75,7 @@ def p2p_connection_ping_test(ad, target_ip_address): ad.log.debug("Run Ping Test, %s ping %s " % (ad.serial, target_ip_address)) asserts.assert_true( acts.utils.adb_shell_ping(ad, - count=3, + count=6, dest_ip=target_ip_address, timeout=20), "%s ping failed" % (ad.serial)) |