Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions lib/node_modules/@stdlib/ndarray/slice-to/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -634,11 +634,11 @@
var i;

values = [
zeros( [ 1 ], { 'dtype': 'float64' } ),
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ),
zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ),
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
zeros( [1], { 'dtype': 'float64' } ),

Check failure on line 637 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1], { 'dtype': 'float32' } ),

Check failure on line 638 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1], { 'dtype': 'int32' } ),

Check failure on line 639 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ),

Check failure on line 640 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } )

Check failure on line 641 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
];

stop = [
Expand Down Expand Up @@ -666,11 +666,11 @@
var i;

values = [
zeros( [ 1 ], { 'dtype': 'float64' } ),
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ),
zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ),
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
zeros( [1], { 'dtype': 'float64' } ),

Check failure on line 669 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1], { 'dtype': 'float32' } ),

Check failure on line 670 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1], { 'dtype': 'int32' } ),

Check failure on line 671 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1, 1], { 'dtype': 'uint32' } ),

Check failure on line 672 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
zeros( [1, 1, 1, 1, 1], { 'dtype': 'complex128' } )

Check failure on line 673 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

No spaces allowed between a closing parenthesis or bracket and a nested object or array expression at the beginning of a line
];

stop = [
Expand Down Expand Up @@ -1190,7 +1190,7 @@
expected = [
[
[ 10, 12, 14 ],
[ 16, 18, 20 ],

Check warning on line 1193 in lib/node_modules/@stdlib/ndarray/slice-to/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (1169). Maximum allowed is 1000
[ 22, 24, 26 ]
],
[
Expand Down