projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f87c1b
)
python/tests/test_fft.py: make sure cvec is large enough
author
Paul Brossier
<piem@piem.org>
Sat, 30 Apr 2016 04:37:15 +0000
(06:37 +0200)
committer
Paul Brossier
<piem@piem.org>
Sat, 30 Apr 2016 04:37:15 +0000
(06:37 +0200)
python/tests/test_fft.py
patch
|
blob
|
history
diff --git
a/python/tests/test_fft.py
b/python/tests/test_fft.py
index
dec2008
..
c225070
100755
(executable)
--- a/
python/tests/test_fft.py
+++ b/
python/tests/test_fft.py
@@
-153,7
+153,7
@@
class aubio_fft_test_case(TestCase):
def test_large_input_fftgrain(self):
win_s = 1024
f = fft(win_s)
- s = cvec(win_s +
1
)
+ s = cvec(win_s +
5
)
with self.assertRaises(ValueError):
f.rdo(s)