From 9292e4e53e3c4056517194a9daa8c716e227b279 Mon Sep 17 00:00:00 2001
From: Jonathan Helmus <jjhelmus@gmail.com>
Date: Fri, 26 Jan 2018 13:03:33 -0500
Subject: [PATCH 2/7] reduce precision in special orthogonal tests

---
 scipy/special/tests/test_orthogonal.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scipy/special/tests/test_orthogonal.py b/scipy/special/tests/test_orthogonal.py
index bd0a090..6adbea1 100644
--- a/scipy/special/tests/test_orthogonal.py
+++ b/scipy/special/tests/test_orthogonal.py
@@ -331,7 +331,7 @@ def test_roots_jacobi():
     vgq(rf(0.9, 2), ef(0.9, 2), wf(0.9, 2), -1., 1., 100, atol=2e-13)
 
     vgq(rf(18.24, 27.3), ef(18.24, 27.3), wf(18.24, 27.3), -1., 1., 5)
-    vgq(rf(18.24, 27.3), ef(18.24, 27.3), wf(18.24, 27.3), -1., 1., 25)
+    vgq(rf(18.24, 27.3), ef(18.24, 27.3), wf(18.24, 27.3), -1., 1., 25, atol=1e-13)
     vgq(rf(18.24, 27.3), ef(18.24, 27.3), wf(18.24, 27.3), -1., 1.,
         100, atol=1e-13)
 
@@ -724,11 +724,11 @@ def test_roots_genlaguerre():
 
     vgq(rootf(0.1), evalf(0.1), weightf(0.1), 0., np.inf, 5)
     vgq(rootf(0.1), evalf(0.1), weightf(0.1), 0., np.inf, 25, atol=1e-13)
-    vgq(rootf(0.1), evalf(0.1), weightf(0.1), 0., np.inf, 100, atol=1e-13)
+    vgq(rootf(0.1), evalf(0.1), weightf(0.1), 0., np.inf, 100, atol=2e-13)
 
     vgq(rootf(1), evalf(1), weightf(1), 0., np.inf, 5)
     vgq(rootf(1), evalf(1), weightf(1), 0., np.inf, 25, atol=1e-13)
-    vgq(rootf(1), evalf(1), weightf(1), 0., np.inf, 100, atol=1e-13)
+    vgq(rootf(1), evalf(1), weightf(1), 0., np.inf, 100, atol=2e-13)
 
     vgq(rootf(10), evalf(10), weightf(10), 0., np.inf, 5)
     vgq(rootf(10), evalf(10), weightf(10), 0., np.inf, 25, atol=1e-13)
-- 
1.8.3.1

