Skip to content

Commit

Permalink
Changed 'pow' to 'power'. Modified log10 test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Dec 12, 2014
1 parent 7acc70e commit bcfc860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_maths.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit bcfc860

Please sign in to comment.