Skip to content

Commit c5a007c

Browse files
committed
test: update test descriptions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 38ad0f4 commit c5a007c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lib/node_modules/@stdlib/lapack/base/iladlr/test/test.ndarray.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ tape( 'the function has an arity of 6', function test( t ) {
6868
t.end();
6969
});
7070

71-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (row-major)', function test( t ) {
71+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (row-major)', function test( t ) {
7272
var data;
7373
var out;
7474
var A;
@@ -82,7 +82,7 @@ tape( 'the function returns the expected zero based index of the last non-zero r
8282
t.end();
8383
});
8484

85-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (column-major)', function test( t ) {
85+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (column-major)', function test( t ) {
8686
var data;
8787
var out;
8888
var A;
@@ -124,7 +124,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
124124
t.end();
125125
});
126126

127-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (row-major) (offsets)', function test( t ) {
127+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (row-major) (offsets)', function test( t ) {
128128
var data;
129129
var out;
130130
var A;
@@ -138,7 +138,7 @@ tape( 'the function returns the expected zero based index of the last non-zero r
138138
t.end();
139139
});
140140

141-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (column-major) (offsets)', function test( t ) {
141+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (column-major) (offsets)', function test( t ) {
142142
var data;
143143
var out;
144144
var A;
@@ -180,7 +180,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
180180
t.end();
181181
});
182182

183-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (row-major) (mixed strides)', function test( t ) {
183+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (row-major) (mixed strides)', function test( t ) {
184184
var data;
185185
var out;
186186
var A;
@@ -194,7 +194,7 @@ tape( 'the function returns the expected zero based index of the last non-zero r
194194
t.end();
195195
});
196196

197-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (column-major) (mixed strides)', function test( t ) {
197+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (column-major) (mixed strides)', function test( t ) {
198198
var data;
199199
var out;
200200
var A;
@@ -236,7 +236,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
236236
t.end();
237237
});
238238

239-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (row-major) (negative strides)', function test( t ) {
239+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (row-major) (negative strides)', function test( t ) {
240240
var data;
241241
var out;
242242
var A;
@@ -250,7 +250,7 @@ tape( 'the function returns the expected zero based index of the last non-zero r
250250
t.end();
251251
});
252252

253-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (column-major) (negative strides)', function test( t ) {
253+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (column-major) (negative strides)', function test( t ) {
254254
var data;
255255
var out;
256256
var A;
@@ -292,7 +292,7 @@ tape( 'the function returns an invalid index (-1) when all elements in a matrix
292292
t.end();
293293
});
294294

295-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (row-major) (large strides)', function test( t ) {
295+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (row-major) (large strides)', function test( t ) {
296296
var data;
297297
var out;
298298
var A;
@@ -306,7 +306,7 @@ tape( 'the function returns the expected zero based index of the last non-zero r
306306
t.end();
307307
});
308308

309-
tape( 'the function returns the expected zero based index of the last non-zero row of a matrix (column-major) (large strides)', function test( t ) {
309+
tape( 'the function returns the expected zero-based index of the last non-zero row of a matrix (column-major) (large strides)', function test( t ) {
310310
var data;
311311
var out;
312312
var A;

0 commit comments

Comments
 (0)