Skip to content

Commit 4373013

Browse files
liebmandevyte
authored andcommitted
fix formatting (#5459)
1 parent 7898ca7 commit 4373013

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/device/test_ping/test_ping.ino

+10-10
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ static void ping_done(void* options, void* resp)
4040

4141
TEST_CASE("pings sent/answered", "[lwip]")
4242
{
43-
IPAddress address;
43+
IPAddress address;
4444
if (WiFi.hostByName(getenv("SERVER_IP"), address))
4545
{
46-
po.ip = address;
47-
po.count = PING_COUNT;
48-
po.coarse_time = 1;
49-
po.sent_function = &ping_done;
50-
po.recv_function = &ping_recv;
51-
ping_start(&po);
52-
delay((PING_COUNT+2)*1000);
46+
po.ip = address;
47+
po.count = PING_COUNT;
48+
po.coarse_time = 1;
49+
po.sent_function = &ping_done;
50+
po.recv_function = &ping_recv;
51+
ping_start(&po);
52+
delay((PING_COUNT+2)*1000);
5353
}
54-
REQUIRE(recv_count == PING_COUNT);
55-
REQUIRE(done_count == PING_COUNT);
54+
REQUIRE(recv_count == PING_COUNT);
55+
REQUIRE(done_count == PING_COUNT);
5656
}
5757

5858
void loop()

0 commit comments

Comments
 (0)