From 95993d74a6eca7e0e3ebe4ce446cb2b326369911 Mon Sep 17 00:00:00 2001 From: Muhammad Azeez Date: Wed, 11 Apr 2018 11:21:02 +0300 Subject: [PATCH] fix a very small typo in http client tests --- tests/device/test_http_client/test_http_client.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/device/test_http_client/test_http_client.ino b/tests/device/test_http_client/test_http_client.ino index 70699c0bbb..db217ba56d 100644 --- a/tests/device/test_http_client/test_http_client.ino +++ b/tests/device/test_http_client/test_http_client.ino @@ -75,7 +75,7 @@ TEST_CASE("HTTPS GET request", "[HTTPClient]") REQUIRE(payload == "hello!!!"); } { - // request which returns 8000 bytes + // request which returns 4000 bytes HTTPClient http; http.begin(getenv("SERVER_IP"), 8088, "/data?size=4000", fp); auto httpCode = http.GET();