From bcfc86095cfa5986df6f7a0a582333ef34a2cd58 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Fri, 12 Dec 2014 14:37:42 +0000 Subject: [PATCH] Changed 'pow' to 'power'. Modified log10 test. --- test/test_maths.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_maths.cpp b/test/test_maths.cpp index 8f590de77..ddd9d704d 100644 --- a/test/test_maths.cpp +++ b/test/test_maths.cpp @@ -118,12 +118,12 @@ namespace actual = etl::log10<100>::value; CHECK_EQUAL(2, actual); - actual = etl::log10<100>::value; + actual = etl::log10<200>::value; CHECK_EQUAL(2, actual); } //************************************************************************* - TEST(test_pow) + TEST(test_power) { int actual;