diff --git a/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js b/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js index 67ba59d12dfc..1c392b679baa 100644 --- a/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js @@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime M = 4; N = 3; - /* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ + /* eslint-disable array-element-newline, no-multi-spaces */ A = new Float64Array([ - 1, 999, 2, 999, 3, 999, + 1, 999, 2, 999, 3, 999, 999, 999, 999, 999, 999, 999, - 4, 999, 5, 999, 6, 999, + 4, 999, 5, 999, 6, 999, 999, 999, 999, 999, 999, 999, - 7, 999, 8, 999, 9, 999, + 7, 999, 8, 999, 9, 999, 999, 999, 999, 999, 999, 999, - 10, 999, 11, 999, 12, 999, + 10, 999, 11, 999, 12, 999, 999, 999, 999, 999, 999, 999 ]); - /* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ + /* eslint-enable array-element-newline, no-multi-spaces */ out = new Float64Array( M*N );