From 2b3c682f43b9d72fcf4e5ec8604a8a6bce6ecc9c Mon Sep 17 00:00:00 2001 From: Chris Liebman Date: Sat, 8 Dec 2018 19:28:46 -0800 Subject: [PATCH] fix formatting --- tests/device/test_ping/test_ping.ino | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/device/test_ping/test_ping.ino b/tests/device/test_ping/test_ping.ino index 29596745a3..1ac7c82699 100644 --- a/tests/device/test_ping/test_ping.ino +++ b/tests/device/test_ping/test_ping.ino @@ -40,19 +40,19 @@ static void ping_done(void* options, void* resp) TEST_CASE("pings sent/answered", "[lwip]") { - IPAddress address; + IPAddress address; if (WiFi.hostByName(getenv("SERVER_IP"), address)) { - po.ip = address; - po.count = PING_COUNT; - po.coarse_time = 1; - po.sent_function = &ping_done; - po.recv_function = &ping_recv; - ping_start(&po); - delay((PING_COUNT+2)*1000); + po.ip = address; + po.count = PING_COUNT; + po.coarse_time = 1; + po.sent_function = &ping_done; + po.recv_function = &ping_recv; + ping_start(&po); + delay((PING_COUNT+2)*1000); } - REQUIRE(recv_count == PING_COUNT); - REQUIRE(done_count == PING_COUNT); + REQUIRE(recv_count == PING_COUNT); + REQUIRE(done_count == PING_COUNT); } void loop()