summaryrefslogtreecommitdiff
path: root/silx/math/test/__init__.py
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>2019-05-28 08:16:16 +0200
committerPicca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>2019-05-28 08:16:16 +0200
commita763e5d1b3921b3194f3d4e94ab9de3fbe08bbdd (patch)
tree45d462ed36a5522e9f3b9fde6c4ec4918c2ae8e3 /silx/math/test/__init__.py
parentcebdc9244c019224846cb8d2668080fe386a6adc (diff)
New upstream version 0.10.1+dfsg
Diffstat (limited to 'silx/math/test/__init__.py')
-rw-r--r--silx/math/test/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/silx/math/test/__init__.py b/silx/math/test/__init__.py
index fdab38f..c5dcf6b 100644
--- a/silx/math/test/__init__.py
+++ b/silx/math/test/__init__.py
@@ -38,6 +38,7 @@ from ..medianfilter.test import suite as test_medianfilter_suite
from .test_combo import suite as test_combo_suite
from .test_calibration import suite as test_calibration_suite
from .test_colormap import suite as test_colormap_suite
+from ..fft.test import suite as test_fft_suite
def suite():
test_suite = unittest.TestSuite()
@@ -51,4 +52,5 @@ def suite():
test_suite.addTest(test_combo_suite())
test_suite.addTest(test_calibration_suite())
test_suite.addTest(test_colormap_suite())
+ test_suite.addTest(test_fft_suite())
return test_suite