summaryrefslogtreecommitdiffstats
path: root/test/atoi/mutt_str_atoul.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/atoi/mutt_str_atoul.c')
-rw-r--r--test/atoi/mutt_str_atoul.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/atoi/mutt_str_atoul.c b/test/atoi/mutt_str_atoul.c
index 6f46d8048..5c8d4a83c 100644
--- a/test/atoi/mutt_str_atoul.c
+++ b/test/atoi/mutt_str_atoul.c
@@ -112,15 +112,15 @@ void test_mutt_str_atoul(void)
if ((tests[i].retval == 0) && (!end || *end))
{
- TEST_MSG("retval: Expected: \\0, Got: %s\n", end);
+ TEST_MSG("retval: Expected: \\0, Got: %s", end);
}
else if ((tests[i].retval == -1) && end)
{
- TEST_MSG("retval: Expected: NULL, Got: %s\n", end);
+ TEST_MSG("retval: Expected: NULL, Got: %s", end);
}
else if ((tests[i].retval == -2) && end)
{
- TEST_MSG("retval: Expected: NULL, Got: %s\n", end);
+ TEST_MSG("retval: Expected: NULL, Got: %s", end);
}
}
}