summaryrefslogtreecommitdiffstats
path: root/tests/Complex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Complex.cpp')
-rw-r--r--tests/Complex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Complex.cpp b/tests/Complex.cpp
index 3d290c0..a81deeb 100644
--- a/tests/Complex.cpp
+++ b/tests/Complex.cpp
@@ -53,7 +53,7 @@ main()
<< "Rejections: " << integrator.rejections() << std::endl;
double error = std::abs(expected - actual)/std::abs(expected);
- if (error > 6.0e-7) {
+ if (error > 6.0e-7 || !std::isfinite(error)) {
std::cerr << "Error: " << 100.0*error << "%" << std::endl;
return EXIT_FAILURE;
} else {