summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-04-09 23:46:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-09 23:46:47 +0000
commit949ab1d679236b3dadd1afc0d8aeaa9adba28484 (patch)
tree8e9d523a964bd50968d16c60c5f13781ca6d90d5
parent94e4b5e57ccc5f7414692cf2187b31d4a81b1105 (diff)
parentffccc38e26dbe00d2d156c9ac0146426adf61cd8 (diff)
downloadtests-949ab1d679236b3dadd1afc0d8aeaa9adba28484.tar.gz
Merge "Revert "net-test: xfrm_algorithm_test - reduce sleep from 0.1s to 0.01s"" into main
-rwxr-xr-xnet/test/xfrm_algorithm_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/xfrm_algorithm_test.py b/net/test/xfrm_algorithm_test.py
index ff825dd..5fa5352 100755
--- a/net/test/xfrm_algorithm_test.py
+++ b/net/test/xfrm_algorithm_test.py
@@ -350,7 +350,7 @@ class XfrmAlgorithmTest(xfrm_base.XfrmLazyTest):
data = accepted.recv(2048)
self.assertEqual(b"hello request", data)
accepted.send(b"hello response")
- time.sleep(0.01)
+ time.sleep(0.1)
accepted.close()
except Exception as e: # pylint: disable=broad-exception-caught
nonlocal server_error