Skip to content

Commit

Permalink
test: update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 2, 2024
1 parent 6c30a59 commit df0d31a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/blas/base/dgemv/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ tape( 'the function throws an error if provided an invalid fourteenth argument',
}
});

tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, no-transpose )', function test( t ) {
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, no-transpose)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -244,7 +244,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
t.end();
});

tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, no-transpose )', function test( t ) {
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, no-transpose)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -266,7 +266,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
t.end();
});

tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, transpose )', function test( t ) {
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, transpose)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -288,7 +288,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
t.end();
});

tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, transpose )', function test( t ) {
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, transpose)', function test( t ) {
var expected;
var data;
var out;
Expand Down

0 comments on commit df0d31a

Please sign in to comment.