Skip to content

Commit

Permalink
Changed the issue #2 testing size to be 5 instead of 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jussi-kalliokoski committed Jan 6, 2013
1 parent b636f50 commit 3c37832
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/issue-2.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ require '../lib/test-tools'
describe 'FFT', ->
describe '#forward', ->
it 'should not segfault on odd N', ->
fft = new FFT(3)
fft.forward(F(3), F(3), F(3))
fft = new FFT(5)
fft.forward(F(5), F(5), F(5))

describe '#inverse', ->
it 'should not segfault on odd N', ->
fft = new FFT(3)
fft.inverse(F(3), F(3), F(3))
fft = new FFT(5)
fft.inverse(F(5), F(5), F(5))

0 comments on commit 3c37832

Please sign in to comment.