Skip to content

Commit ec426b1

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 9b5fac2 commit ec426b1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/base/wasm/csrot/test/test.main.js

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

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

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

lib/node_modules/@stdlib/blas/base/wasm/csrot/test/test.module.main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ tape( 'a module instance has a `main` method which supports a `y` stride', funct
296296
t.end();
297297
});
298298

299-
tape( 'a module instance has a `main` method which returns a reference to the output array', function test( t ) {
299+
tape( 'a module instance has a `main` method which returns a reference to the second input array', function test( t ) {
300300
var mem;
301301
var mod;
302302
var out;
@@ -321,7 +321,7 @@ tape( 'a module instance has a `main` method which returns a reference to the ou
321321
t.end();
322322
});
323323

324-
tape( 'if provided an `N` parameter less than or equal to `0`, a module instance has a `main` method which leaves the output array unchanged', function test( t ) {
324+
tape( 'if provided an `N` parameter less than or equal to `0`, a module instance has a `main` method which leaves both arrays unchanged', function test( t ) {
325325
var actualX;
326326
var actualY;
327327
var viewX;

lib/node_modules/@stdlib/blas/base/wasm/csrot/test/test.module.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ tape( 'a module instance has an `ndarray` method which supports a `y` offset', f
470470
t.end();
471471
});
472472

473-
tape( 'a module instance has an `ndarray` method which returns a reference to the output array', function test( t ) {
473+
tape( 'a module instance has an `ndarray` method which returns a reference to the second input array', function test( t ) {
474474
var mem;
475475
var mod;
476476
var out;
@@ -495,7 +495,7 @@ tape( 'a module instance has an `ndarray` method which returns a reference to th
495495
t.end();
496496
});
497497

498-
tape( 'if provided an `N` parameter less than or equal to `0`, a module instance has an `ndarray` method which leaves the output array unchanged', function test( t ) {
498+
tape( 'if provided an `N` parameter less than or equal to `0`, a module instance has an `ndarray` method which leaves both arrays unchanged', function test( t ) {
499499
var actualX;
500500
var actualY;
501501
var viewX;

lib/node_modules/@stdlib/blas/base/wasm/csrot/test/test.ndarray.js

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

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

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

0 commit comments

Comments
 (0)