# HG changeset patch # User Nicholas R. Jankowski # Date 1654716739 14400 # Node ID b390f662a150ebcc51f566ae85b65dc6b4cf5cd4 # Parent b818d4ec035eed7c561ab5b14561c35da94e6f23 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. diff -r b818d4ec035e -r b390f662a150 scripts/general/integral.m --- 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>