Decrease the number of iterations on the EM derivatives.

This is to increase the speed at which travis runs tests.
This commit is contained in:
Rowan Cockett
2016-01-03 19:11:45 -08:00
parent 9ebd0fcedc
commit 00a29d27aa
@@ -38,7 +38,7 @@ def derivTest(fdemType, comp):
survey = prb.survey
def fun(x):
return survey.dpred(x), lambda x: prb.Jvec(x0, x)
return Tests.checkDerivative(fun, x0, num=3, plotIt=False, eps=FLR)
return Tests.checkDerivative(fun, x0, num=2, plotIt=False, eps=FLR)
class FDEM_DerivTests(unittest.TestCase):