Skip to content

Commit 1c415a1

Browse files
test: changes for failing CI checks
2 parents 78849cb + 12b7c52 commit 1c415a1

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/test/test.dnansumkbn2.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,6 @@ tape( 'the function has an arity of 3', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'if provided a `stride` parameter equal to `0` and the first element is NaN, the function returns 0', function test( t ) {
42-
var x;
43-
var v;
44-
45-
x = new Float64Array( [ NaN, 1.0, 2.0, 3.0, 4.0 ] );
46-
47-
v = dnansumkbn2( x.length, x, 0 );
48-
t.strictEqual( v, 0.0, 'returns expected Value' );
49-
t.end();
50-
});
51-
5241
tape( 'the function calculates the sum of strided array elements (ignoring NaN values)', function test( t ) {
5342
var x;
5443
var v;

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/test/test.ndarray.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,6 @@ tape( 'the function has an arity of 4', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'if provided a `stride` parameter equal to `0` and the first element is NaN, the function returns 0', function test( t ) {
42-
var x;
43-
var v;
44-
45-
x = new Float64Array( [ NaN, 1.0, 2.0, 3.0, 4.0 ] );
46-
47-
v = dnansumkbn2( x.length, x, 0 );
48-
t.strictEqual( v, 0.0, 'returns expected Value' );
49-
t.end();
50-
});
51-
5241
tape( 'the function calculates the sum of strided array elements (ignoring NaN values)', function test( t ) {
5342
var x;
5443
var v;

0 commit comments

Comments
 (0)