Skip to content

Commit 1a67d21

Browse files
ShabiShett07kgryte
andauthored
fix: indentations
Co-authored-by: Athan <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 51912f3 commit 1a67d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dnrm2/test/test.dnrm2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ tape( 'the function calculates the L2-norm of a vector', function test( t ) {
8484
z = dnrm2( x.length, x, 1 );
8585
t.strictEqual( z, 4.0, 'returns expected value' );
8686

87-
x = new Float64Array([ 1.0e150, 1.0e150, 1.0e150, 1.0e150 ]);
87+
x = new Float64Array( [ 1.0e150, 1.0e150, 1.0e150, 1.0e150 ] );
8888

8989
z = dnrm2( x.length, x, 1 );
9090
t.strictEqual( z, 2.0e+150, 'returns expected value' );

0 commit comments

Comments
 (0)