[PATCH] selftest: epoll_busy_poll: Fix spelling mistake "couldnt" -> "couldn't"

Colin Ian King posted 1 patch 1 year, 7 months ago
tools/testing/selftests/net/epoll_busy_poll.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] selftest: epoll_busy_poll: Fix spelling mistake "couldnt" -> "couldn't"
Posted by Colin Ian King 1 year, 7 months ago
There is a spelling mistake in a TH_LOG message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/net/epoll_busy_poll.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/net/epoll_busy_poll.c b/tools/testing/selftests/net/epoll_busy_poll.c
index 9dd2830fd67c..16e457c2f877 100644
--- a/tools/testing/selftests/net/epoll_busy_poll.c
+++ b/tools/testing/selftests/net/epoll_busy_poll.c
@@ -232,7 +232,7 @@ TEST_F(epoll_busy_poll, test_set_invalid)
 
 	ret = cap_set_flag(self->caps, CAP_EFFECTIVE, 1, net_admin, CAP_CLEAR);
 	EXPECT_EQ(0, ret)
-		TH_LOG("couldnt clear CAP_NET_ADMIN");
+		TH_LOG("couldn't clear CAP_NET_ADMIN");
 
 	ret = cap_set_proc(self->caps);
 	EXPECT_EQ(0, ret)
-- 
2.39.2
Re: [PATCH] selftest: epoll_busy_poll: Fix spelling mistake "couldnt" -> "couldn't"
Posted by Simon Horman 1 year, 7 months ago
On Fri, May 10, 2024 at 09:48:11AM +0100, Colin Ian King wrote:
> There is a spelling mistake in a TH_LOG message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Simon Horman <horms@kernel.org>