summaryrefslogtreecommitdiff
path: root/silx/math/medianfilter/test/__init__.py
diff options
context:
space:
mode:
authorAlexandre Marie <alexandre.marie@synchrotron-soleil.fr>2018-12-17 12:28:24 +0100
committerAlexandre Marie <alexandre.marie@synchrotron-soleil.fr>2018-12-17 12:28:24 +0100
commitcebdc9244c019224846cb8d2668080fe386a6adc (patch)
treeaedec55da0f9dd4fc4d6c7eb0f58489a956e2e8c /silx/math/medianfilter/test/__init__.py
parent159ef14fb9e198bb0066ea14e6b980f065de63dd (diff)
New upstream version 0.9.0+dfsg
Diffstat (limited to 'silx/math/medianfilter/test/__init__.py')
-rw-r--r--silx/math/medianfilter/test/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/silx/math/medianfilter/test/__init__.py b/silx/math/medianfilter/test/__init__.py
index ec08d21..92a6524 100644
--- a/silx/math/medianfilter/test/__init__.py
+++ b/silx/math/medianfilter/test/__init__.py
@@ -1,6 +1,6 @@
# coding: utf-8
# /*##########################################################################
-# Copyright (C) 2016 European Synchrotron Radiation Facility
+# Copyright (C) 2016-2018 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -27,10 +27,10 @@ __date__ = "22/06/2016"
import unittest
-from .test_medianfilter import suite as test_medianfilter
+from . import test_medianfilter
def suite():
test_suite = unittest.TestSuite()
- test_suite.addTest(test_medianfilter())
+ test_suite.addTest(test_medianfilter.suite())
return test_suite