Skip to content

Commit 8334f9c

Browse files
committed
fix: lint errors
1 parent 32fc00f commit 8334f9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/base/to-reversed-dimensions/benchmark

lib/node_modules/@stdlib/ndarray/base/to-reversed-dimensions/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ bench( format( '%s::base:ndims=4', pkg ), function benchmark( b ) {
226226

227227
b.tic();
228228
for ( i = 0; i < b.iterations; i++ ) {
229-
out = toReversedDimensions( values[ i%values.length ], [ 0, 1, 2, 3 ] ); // eslint-disable-line max-len
229+
out = toReversedDimensions( values[ i%values.length ], [ 0, 1, 2, 3 ] );
230230
if ( typeof out !== 'object' ) {
231231
b.fail( 'should return an ndarray' );
232232
}
@@ -258,7 +258,7 @@ bench( format( '%s::non-base:ndims=4', pkg ), function benchmark( b ) {
258258

259259
b.tic();
260260
for ( i = 0; i < b.iterations; i++ ) {
261-
out = toReversedDimensions( values[ i%values.length ], [ 0, 1, 2, 3 ] ); // eslint-disable-line max-len
261+
out = toReversedDimensions( values[ i%values.length ], [ 0, 1, 2, 3 ] );
262262
if ( typeof out !== 'object' ) {
263263
b.fail( 'should return an ndarray' );
264264
}

0 commit comments

Comments
 (0)