Merge pull request #224 from tobiasweibel/weibelt/fix-duplicated-test

Replaced duplicated logf(2.0) with logf(2.0f) unittest
This commit is contained in:
Daniel Marjamäki 2014-01-23 20:41:45 -08:00
commit 1edd43253d
1 changed files with 1 additions and 1 deletions

View File

@ -1507,7 +1507,7 @@ private:
" std::cout << logl(1.0E+3) << std::endl;\n"
" std::cout << log(2.0) << std::endl;\n"
" std::cout << logf(2.0) << std::endl;\n"
" std::cout << logf(2.0) << std::endl;\n"
" std::cout << logf(2.0f) << std::endl;\n"
"}");
ASSERT_EQUALS("", errout.str());