From 1b2d7e49fc480e730a2516a473af7cad853c8dd8 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Sat, 19 Apr 2025 05:23:22 +0200 Subject: [PATCH] Fix typo --- tests/tcp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tcp.cpp b/tests/tcp.cpp index 468260a..e285f8c 100644 --- a/tests/tcp.cpp +++ b/tests/tcp.cpp @@ -57,7 +57,7 @@ TEST(TcpClient, Connect) { EXPECT_EQ(statRes4.value(), ECONNREFUSED); } -TEST(TcpClient, Reonnect) { +TEST(TcpClient, Reconnect) { tcp::NonBlockingServer server1{{.port = 1234}}; tcp::NonBlockingServer server2{{.port = 2345}}; tcp::NonBlockingClient client;