From c89a0e3bf0ff8bcfcb5576bbdd145ed84a28bb0d Mon Sep 17 00:00:00 2001 From: chestamittal <53469607+chestamittal@users.noreply.github.com> Date: Tue, 20 Oct 2020 03:02:50 +0530 Subject: [PATCH] Update math/lcm_sum.cpp Co-authored-by: David Leal --- math/lcm_sum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/lcm_sum.cpp b/math/lcm_sum.cpp index bababab9d..46452120e 100644 --- a/math/lcm_sum.cpp +++ b/math/lcm_sum.cpp @@ -56,7 +56,7 @@ int lcmSum(int num) { */ static void test() { int n = 2; - int test_1 = lcmSum(n); + int test_1 = math::lcmSum(n); assert(test_1 == 4); std::cout << "Passed Test 1!" << std::endl;