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:
commit
1edd43253d
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in New Issue