Skip to content

Commit 84216a6

Browse files
committed
changes for passing tests
1 parent 9873e24 commit 84216a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mkl_fft/interfaces/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2424
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

26-
from . import dask_fft, numpy_fft, scipy_fft
26+
from . import numpy_fft, scipy_fft

mkl_fft/tests/test_interfaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ def test_axes(func):
168168

169169
@pytest.mark.parametrize(
170170
"interface",
171-
[mfi.scipy_fft, mfi.numpy_fft, mfi.dask_fft],
172-
ids=["scipy", "numpy", "dask"],
171+
[mfi.scipy_fft, mfi.numpy_fft],
172+
ids=["scipy", "numpy"],
173173
)
174174
@pytest.mark.parametrize(
175175
"func", ["fftshift", "ifftshift", "fftfreq", "rfftfreq"]

0 commit comments

Comments
 (0)