Skip to content

Commit

Permalink
TST: fix failure of test for signal.colvolve on 32-bit platforms.
Browse files Browse the repository at this point in the history
Partial backport of gh-7517.
  • Loading branch information
rgommers committed Jun 22, 2017
1 parent b66a3c8 commit 03b1092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scipy/signal/tests/test_signaltools.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ def test_convolve_method(self, n=100):

# These types include 'bool' and all precisions (int8, float32, etc)
# The removed types throw errors in correlate or fftconvolve
for dtype in ['complex256', 'float128', 'str', 'void', 'bytes',
'object', 'unicode', 'string']:
for dtype in ['complex256', 'complex192', 'float128', 'float96',
'str', 'void', 'bytes', 'object', 'unicode', 'string']:
if dtype in types:
types.remove(dtype)

Expand Down

0 comments on commit 03b1092

Please sign in to comment.