Skip to content

Commit 53d0507

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 39cf884 commit 53d0507

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ tape( 'the function throws an error if provided an invalid ninth argument', func
188188
}
189189
});
190190

191-
tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (row-major, lower)', function test( t ) {
191+
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (row-major, lower)', function test( t ) {
192192
var expected;
193193
var data;
194194
var out;
@@ -209,7 +209,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
209209
t.end();
210210
});
211211

212-
tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (column-major, lower)', function test( t ) {
212+
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (column-major, lower)', function test( t ) {
213213
var expected;
214214
var data;
215215
var out;
@@ -230,7 +230,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
230230
t.end();
231231
});
232232

233-
tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (column-major, upper)', function test( t ) {
233+
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (column-major, upper)', function test( t ) {
234234
var expected;
235235
var data;
236236
var out;
@@ -251,7 +251,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
251251
t.end();
252252
});
253253

254-
tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (row-major, upper)', function test( t ) {
254+
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (row-major, upper)', function test( t ) {
255255
var expected;
256256
var data;
257257
var out;

0 commit comments

Comments
 (0)