Skip to content

Commit 75f03bc

Browse files
committed
fix: correct object literal formatting in gfill test
- Fix ESLint object-curly-newline error on line 96 - Object literals must use multi-line format per stdlib style guide
1 parent 5e264b4 commit 75f03bc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ndarray/gfill/test

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ tape( 'the function fills an ndarray with object values', function test( t ) {
9393
var obj;
9494
var x;
9595

96-
obj = { 'value': 42 };
96+
obj = {
97+
'value': 42
98+
};
9799
xbuf = [ 1, 2, 3, 4 ];
98100
x = vector( xbuf, 4, 1, 0 );
99101

0 commit comments

Comments
 (0)