Skip to content

Commit 4db1851

Browse files
committed
fix: resolve lint errors
1 parent 2a72f53 commit 4db1851

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ tape( 'the function calculates the sum of absolute values (ignoring NaN values)'
8080
tape( 'if provided a `stride` and `offset` parameter equal to `0` and the first element is NaN, the function returns `0`', function test( t ) {
8181
var x;
8282
var v;
83-
83+
8484
x = new Float64Array( [ NaN, -2.0, -4.0, 5.0, 3.0 ] );
85-
85+
8686
v = dnanasumors( x.length, x, 0, 0 );
8787
t.strictEqual( v, 0.0, 'returns expected value' );
88-
88+
8989
t.end();
9090
});
9191

0 commit comments

Comments
 (0)