Skip to content

Commit 0546e72

Browse files
fix: CI error
1 parent 8af873c commit 0546e72

File tree

2 files changed

+0
-44
lines changed

2 files changed

+0
-44
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmean/test/test.ndarray.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -110,28 +110,6 @@ tape( 'the function supports a `stride` parameter', function test( t ) {
110110
t.end();
111111
});
112112

113-
tape( 'the function supports a negative `stride` parameter', function test( t ) {
114-
var x;
115-
var v;
116-
117-
x = new Float32Array([
118-
1.0, // 4
119-
2.0,
120-
2.0, // 3
121-
-7.0,
122-
-2.0, // 2
123-
3.0,
124-
4.0, // 1
125-
2.0,
126-
NaN // 0
127-
]);
128-
129-
v = dsnanmean( 5, x, -2, 6 );
130-
131-
t.strictEqual( v, 1.25, 'returns expected value' );
132-
t.end();
133-
});
134-
135113
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
136114
var x;
137115
var v;

lib/node_modules/@stdlib/stats/base/dsnanmean/test/test.ndarray.native.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -119,28 +119,6 @@ tape( 'the function supports a `stride` parameter', opts, function test( t ) {
119119
t.end();
120120
});
121121

122-
tape( 'the function supports a negative `stride` parameter', opts, function test( t ) {
123-
var x;
124-
var v;
125-
126-
x = new Float32Array([
127-
1.0, // 4
128-
2.0,
129-
2.0, // 3
130-
-7.0,
131-
-2.0, // 2
132-
3.0,
133-
4.0, // 1
134-
2.0,
135-
NaN // 0
136-
]);
137-
138-
v = dsnanmean( 5, x, -2, 6 );
139-
140-
t.strictEqual( v, 1.25, 'returns expected value' );
141-
t.end();
142-
});
143-
144122
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', opts, function test( t ) {
145123
var x;
146124
var v;

0 commit comments

Comments
 (0)