summaryrefslogtreecommitdiffstats
path: root/test/sanitytest.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/sanitytest.c')
-rw-r--r--test/sanitytest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sanitytest.c b/test/sanitytest.c
index c1c51a2b9a..e9afb443f9 100644
--- a/test/sanitytest.c
+++ b/test/sanitytest.c
@@ -66,7 +66,7 @@ static int test_sanity_sign(void)
return 1;
}
-static int test_sanity_unsigned_convertion(void)
+static int test_sanity_unsigned_conversion(void)
{
/* Check that unsigned-to-signed conversions preserve bit patterns */
if (!TEST_int_eq((int)((unsigned int)INT_MAX + 1), INT_MIN)
@@ -91,7 +91,7 @@ int setup_tests(void)
ADD_TEST(test_sanity_enum_size);
ADD_TEST(test_sanity_twos_complement);
ADD_TEST(test_sanity_sign);
- ADD_TEST(test_sanity_unsigned_convertion);
+ ADD_TEST(test_sanity_unsigned_conversion);
ADD_TEST(test_sanity_range);
return 1;
}