Skip to content

Commit 34ed378

Browse files
committed
remove outdated test skip
1 parent ce9d1e7 commit 34ed378

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

lumispy/tests/signals/test_cl_sem_spectrum.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,13 @@
1616
# You should have received a copy of the GNU General Public License
1717
# along with LumiSpy. If not, see <https://www.gnu.org/licenses/#GPL>.
1818

19-
import hyperspy
2019
import numpy as np
2120
import pytest
2221

2322
from lumispy.signals import CLSEMSpectrum
2423

2524

2625
class TestCLSEMSpectrum:
27-
@pytest.mark.skipif(
28-
hyperspy.__version__ == "1.6.2", reason="Broken with hyperspy 1.6.2"
29-
)
3026
@pytest.mark.parametrize("nx, ny", [(10, 20), (20, 10)])
3127
def test_correct_grating_shift(self, nx, ny):
3228
calx, corg, fov = 1e-10, 1e-10, 1e-10
@@ -44,9 +40,6 @@ def test_correct_grating_shift(self, nx, ny):
4440
s2.shift1D(barray)
4541
np.testing.assert_allclose(s2.data, s.data)
4642

47-
@pytest.mark.skipif(
48-
hyperspy.__version__ == "1.6.2", reason="Broken with hyperspy 1.6.2"
49-
)
5043
def test_double_correct_grating_shift(self):
5144
s = CLSEMSpectrum(np.ones((10, 10, 10)))
5245
s.correct_grating_shift(1e-10, 1e-10, 1e-10)

0 commit comments

Comments
 (0)