Skip to content

Commit 151a808

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent e54e5c0 commit 151a808

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ tape( 'the function supports an `x` stride', function test( t ) {
144144
t.end();
145145
});
146146

147-
tape( 'the function returns a reference to the output array', function test( t ) {
147+
tape( 'the function returns a reference to the input array', function test( t ) {
148148
var out;
149149
var ca;
150150
var cx;
@@ -158,7 +158,7 @@ tape( 'the function returns a reference to the output array', function test( t )
158158
t.end();
159159
});
160160

161-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns the output array unchanged', function test( t ) {
161+
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns the input array unchanged', function test( t ) {
162162
var expected;
163163
var viewX;
164164
var ca;
@@ -179,7 +179,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
179179
t.end();
180180
});
181181

182-
tape( 'if provided an `strideX` parameter less than or equal to `0`, the function returns the output array unchanged', function test( t ) {
182+
tape( 'if provided an `strideX` parameter less than or equal to `0`, the function returns the input array unchanged', function test( t ) {
183183
var expected;
184184
var viewX;
185185
var ca;

0 commit comments

Comments
 (0)