Skip to content

Commit 95853cb

Browse files
committed
test: add initial test for rffti
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent 8189014 commit 95853cb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/node_modules/@stdlib/fft/base/fftpack/test/test.rffti.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ tape( 'the function initializes FFT working arrays', function test( t ) {
5151
w = new Float64Array( ( 2 * n ) + 15 );
5252
rffti( n, w, ptr );
5353
t.strictEqual( isFloat64Array( w ), true, 'returns expected value for n=' + n );
54-
t.notEqual( w[ ptr ], 0.0, 'modifies input array for n=' + n );
5554
t.notEqual( w[ n + ptr ], 0.0, 'modifies input array for n=' + n );
5655
ptr += ( 2 * n ) + 15;
5756
}

0 commit comments

Comments
 (0)