summaryrefslogtreecommitdiffstats
path: root/tests/HE12.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/HE12.cpp')
-rw-r--r--tests/HE12.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/HE12.cpp b/tests/HE12.cpp
index 9a22d20..99b4ad3 100644
--- a/tests/HE12.cpp
+++ b/tests/HE12.cpp
@@ -26,8 +26,8 @@ main()
<< "Numerical: " << actual << std::endl
<< "Expected: " << expected << std::endl
<< "h: " << integrator.h() << std::endl
- << "iterations: " << integrator.iterations() << std::endl
- << "rejections: " << integrator.rejections() << std::endl;
+ << "Iterations: " << integrator.iterations() << std::endl
+ << "Rejections: " << integrator.rejections() << std::endl;
double error = std::fabs(expected - actual)/expected;
if (error > 8.7e-7) {