From c3e444cf4aa9ea0d98727dadef1f112219722851 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sat, 22 Feb 2025 21:43:12 +0800 Subject: [PATCH] tests/unit: fix typo in test output replace "Stoppping" with "Stopping". Signed-off-by: Kefu Chai Closes scylladb/seastar#2655 --- tests/unit/rest_api_httpd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/rest_api_httpd.cc b/tests/unit/rest_api_httpd.cc index 2edff75366..2ad8ed9656 100644 --- a/tests/unit/rest_api_httpd.cc +++ b/tests/unit/rest_api_httpd.cc @@ -67,7 +67,7 @@ int main(int ac, char** av) { server->start().get(); auto stop_server = defer([&] () noexcept { - std::cout << "Stoppping HTTP server" << std::endl; // This can throw, but won't. + std::cout << "Stopping HTTP server" << std::endl; // This can throw, but won't. server->stop().get(); });