Skip to content

Commit 85ae76b

Browse files
chore: fix JavaScript lint errors (issue #12345)
1 parent 58bbb07 commit 85ae76b

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/slice-to/test

lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -634,11 +634,11 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
634634
var i;
635635

636636
values = [
637-
zeros( [ 1 ], { 'dtype': 'float64' } ),
638-
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
639-
zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ),
640-
zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ),
641-
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
637+
zeros( [1], { 'dtype': 'float64' } ),
638+
zeros( [1, 1], { 'dtype': 'float32' } ),
639+
zeros( [1, 1, 1], { 'dtype': 'int32' } ),
640+
zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ),
641+
zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } )
642642
];
643643

644644
stop = [
@@ -666,11 +666,11 @@ tape( 'the function returns an empty array when an ending index is the first ele
666666
var i;
667667

668668
values = [
669-
zeros( [ 1 ], { 'dtype': 'float64' } ),
670-
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
671-
zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ),
672-
zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ),
673-
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
669+
zeros( [1], { 'dtype': 'float64' } ),
670+
zeros( [1, 1], { 'dtype': 'float32' } ),
671+
zeros( [1, 1, 1], { 'dtype': 'int32' } ),
672+
zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ),
673+
zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } )
674674
];
675675

676676
stop = [

0 commit comments

Comments
 (0)