1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

fix a very small typo in http client tests (#4633)

This commit is contained in:
Muhammad Azeez 2018-04-11 12:38:20 +03:00 committed by Ivan Grokhotkov
parent dae30eccbe
commit 4305275f8d

View File

@ -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();