changeset 31082:b390f662a150

integral.m: increase tolerance on combined parameter BIST (bug #62599) * integral.m: increase the tolerance on failing combined-parameter test from eps to 2*eps.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Wed, 08 Jun 2022 15:32:19 -0400
parents b818d4ec035e
children 037c1e768b56
files scripts/general/integral.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/integral.m	Wed Jun 08 20:31:10 2022 +0200
+++ b/scripts/general/integral.m	Wed Jun 08 15:32:19 2022 -0400
@@ -319,7 +319,7 @@
 
 ## Test combined parameters
 %!assert (integral (@(x) [sin(x), cos(x)], 0, pi, "ArrayValued", 1,
-%!                   "Waypoints", [0.5]), [2, 0], eps);
+%!                   "Waypoints", [0.5]), [2, 0], 2*eps);
 
 ##test 2nd output
 %!test <*62412>