Skip to content

Commit 110d427

Browse files
authored
chore: update variable name
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 5e6eff4 commit 110d427

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
178178

179179
tape( 'the function supports view offsets', function test( t ) {
180180
var expected;
181-
var cx0;
182-
var cx1;
181+
var x0;
182+
var x1;
183183

184184
// Initial array:
185-
cx0 = new Complex64Array([
185+
x0 = new Complex64Array([
186186
0.1,
187187
-0.3,
188188
8.0, // 1
@@ -196,9 +196,9 @@ tape( 'the function supports view offsets', function test( t ) {
196196
]);
197197

198198
// Create offset view:
199-
cx1 = new Complex64Array( cx0.buffer, cx0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
199+
x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
200200

201-
csscal( 3, 2.0, cx1, 1 );
201+
csscal( 3, 2.0, x1, 1 );
202202

203203
expected = new Complex64Array([
204204
0.1,
@@ -212,6 +212,6 @@ tape( 'the function supports view offsets', function test( t ) {
212212
2.0,
213213
3.0
214214
]);
215-
t.strictEqual( isSameComplex64Array( cx0, expected ), true, 'returns expected value' );
215+
t.strictEqual( isSameComplex64Array( x0, expected ), true, 'returns expected value' );
216216
t.end();
217217
});

0 commit comments

Comments
 (0)