Skip to content

Commit 31d29ff

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 ec426b1 commit 31d29ff

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/base/zdrot/test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ tape( 'the function supports a `y` offset', function test( t ) {
375375
t.end();
376376
});
377377

378-
tape( 'the function returns a reference to the destination array', function test( t ) {
378+
tape( 'the function returns a reference to the second input array', function test( t ) {
379379
var out;
380380
var x;
381381
var y;
@@ -389,7 +389,7 @@ tape( 'the function returns a reference to the destination array', function test
389389
t.end();
390390
});
391391

392-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', function test( t ) {
392+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', function test( t ) {
393393
var viewX;
394394
var viewY;
395395
var xe;

lib/node_modules/@stdlib/blas/base/zdrot/test/test.ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ tape( 'the function supports a `y` offset', opts, function test( t ) {
384384
t.end();
385385
});
386386

387-
tape( 'the function returns a reference to the destination array', opts, function test( t ) {
387+
tape( 'the function returns a reference to the second input array', opts, function test( t ) {
388388
var out;
389389
var x;
390390
var y;
@@ -398,7 +398,7 @@ tape( 'the function returns a reference to the destination array', opts, functio
398398
t.end();
399399
});
400400

401-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', opts, function test( t ) {
401+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', opts, function test( t ) {
402402
var viewX;
403403
var viewY;
404404
var xe;

lib/node_modules/@stdlib/blas/base/zdrot/test/test.zdrot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ tape( 'the function supports a `y` stride', function test( t ) {
253253
t.end();
254254
});
255255

256-
tape( 'the function returns a reference to the destination array', function test( t ) {
256+
tape( 'the function returns a reference to the second input array', function test( t ) {
257257
var out;
258258
var x;
259259
var y;
@@ -267,7 +267,7 @@ tape( 'the function returns a reference to the destination array', function test
267267
t.end();
268268
});
269269

270-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', function test( t ) {
270+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', function test( t ) {
271271
var viewX;
272272
var viewY;
273273
var xe;

lib/node_modules/@stdlib/blas/base/zdrot/test/test.zdrot.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ tape( 'the function supports a `y` stride', opts, function test( t ) {
262262
t.end();
263263
});
264264

265-
tape( 'the function returns a reference to the destination array', opts, function test( t ) {
265+
tape( 'the function returns a reference to the second input array', opts, function test( t ) {
266266
var out;
267267
var x;
268268
var y;
@@ -276,7 +276,7 @@ tape( 'the function returns a reference to the destination array', opts, functio
276276
t.end();
277277
});
278278

279-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', opts, function test( t ) {
279+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', opts, function test( t ) {
280280
var viewX;
281281
var viewY;
282282
var xe;

0 commit comments

Comments
 (0)