From a77d5458307556dd4745ec4b55a77c0bb32a5351 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Fri, 25 Oct 2024 21:46:43 +0200 Subject: [PATCH] Fix typo --- src/test-sample/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test-sample/test.cpp b/src/test-sample/test.cpp index 14fe5a47..7cb28819 100644 --- a/src/test-sample/test.cpp +++ b/src/test-sample/test.cpp @@ -92,7 +92,7 @@ bool test_io() printf("Running test '" name "': "); \ const auto res = func(); \ valid &= res; \ - puts(res ? "Sucess" : "Fail"); \ + puts(res ? "Success" : "Fail"); \ } int main(int /*argc*/, const char* /*argv*/[])