Skip to content

Commit bf841ae

Browse files
authored
style: add missing space
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 1b39ed7 commit bf841ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/dnanmskmaxabs/test

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ tape( 'the function calculates the maximum absolute value of a one-dimensional n
7575
v = dnanmskmaxabs( [ vector( 'float64', x, x.length, 1, 0 ), vector( 'uint8', mask, mask.length, 1, 0 ) ] );
7676
t.strictEqual( v, 5.0, 'returns expected value' );
7777

78-
x = new Float64Array( [-0.0, 0.0, NaN, -0.0 ] );
78+
x = new Float64Array( [ -0.0, 0.0, NaN, -0.0 ] );
7979
mask = new Uint8Array( [ 0, 0, 0, 0 ] );
8080
v = dnanmskmaxabs( [ vector( 'float64', x, x.length, 1, 0 ), vector( 'uint8', mask, mask.length, 1, 0 ) ] );
8181
t.strictEqual( isPositiveZero( v ), true, 'returns expected value' );

0 commit comments

Comments
 (0)