summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/test/test_algorithms.py
diff options
context:
space:
mode:
Diffstat (limited to 'Wrappers/Python/test/test_algorithms.py')
-rwxr-xr-xWrappers/Python/test/test_algorithms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/test/test_algorithms.py b/Wrappers/Python/test/test_algorithms.py
index d129382..2b38e3f 100755
--- a/Wrappers/Python/test/test_algorithms.py
+++ b/Wrappers/Python/test/test_algorithms.py
@@ -368,7 +368,7 @@ class TestAlgorithms(unittest.TestCase):
fista = FISTA(x_init=x_init , f=reg, g=fid)
fista.max_iteration = 3000
fista.update_objective_interval = 500
- fista.run(3000, verbose=True)
+ fista.run(verbose=True)
rmse = (fista.get_output() - data).norm() / data.as_array().size
print ("RMSE", rmse)
self.assertLess(rmse, 4.2e-4)