]> granicus.if.org Git - esp-idf/commitdiff
https_request: Fix CI failure
authorJitin George <jitin@espressif.com>
Tue, 10 Apr 2018 10:30:34 +0000 (16:00 +0530)
committerJitin George <jitin@espressif.com>
Tue, 10 Apr 2018 10:30:34 +0000 (16:00 +0530)
examples/protocols/https_request/example_test.py

index 61eb024532c28baa17a9de310693b9dd70176f23..169ae63302c91c00f03f8b47031df7bdcb7b06d3 100644 (file)
@@ -30,10 +30,8 @@ def test_examples_protocol_https_request(env, extra_data):
     IDF.check_performance("https_request_bin_size", bin_size//1024)
     # start test
     dut1.start_app()
-    dut1.expect("Connecting to www.howsmyssl.com:443", timeout=30)
-    dut1.expect("Performing the SSL/TLS handshake")
-    dut1.expect("Certificate verified.", timeout=15)
-    dut1.expect("Cipher suite is TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256", timeout=20)
+    dut1.expect("Connection established...", timeout=30)
+    dut1.expect("Reading HTTP response...")
     dut1.expect(re.compile(r"Completed (\d) requests"))