From 1b5ff74a3d796c4199062dd13bdf9aa4039f23fe Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 18 Sep 2025 09:07:34 +0100 Subject: [PATCH] Fixed spelling of gdc to gcd --- test/test_math_functions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_math_functions.cpp b/test/test_math_functions.cpp index a6aeaed1..40594351 100644 --- a/test/test_math_functions.cpp +++ b/test/test_math_functions.cpp @@ -461,7 +461,7 @@ namespace } //************************************************************************* - TEST(test_gdc_for_positive_integers) + TEST(test_gcd_for_positive_integers) { CHECK_EQUAL(1, etl::gcd( 3, 5, 7)); CHECK_EQUAL(2, etl::gcd( 4, 6, 8)); @@ -471,7 +471,7 @@ namespace } //************************************************************************* - TEST(test_gdc_for_negative_integers) + TEST(test_gcd_for_negative_integers) { CHECK_EQUAL(1, etl::gcd( -3, -5, -7)); CHECK_EQUAL(2, etl::gcd( -4, -6, -8)); @@ -482,7 +482,7 @@ namespace #if ETL_USING_CPP14 //************************************************************************* - TEST(test_constexpr_gdc) + TEST(test_constexpr_gcd) { constexpr int gcd1 = etl::gcd(3, 5, 7); constexpr int gcd2 = etl::gcd(4, 6, 8);