Skip to content

Commit 2822b1c

Browse files
committed
chore: clean-up
--- 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 ba7b43a commit 2822b1c

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ tape( 'the `main` method supports an `x` stride', function test( t ) {
5555
var N;
5656

5757
x = new Complex64Array([
58-
-2.0, // 0
58+
-2.0, // 0
5959
1.0, // 0
6060
3.0,
6161
-5.0,
@@ -93,7 +93,7 @@ tape( 'the `main` method supports negative strides', function test( t ) {
9393
var N;
9494

9595
x = new Complex64Array([
96-
-2.0, // 1
96+
-2.0, // 1
9797
1.0, // 1
9898
3.0,
9999
-5.0,
@@ -118,11 +118,11 @@ tape( 'the `main` method supports complex access patterns', function test( t ) {
118118
var N;
119119

120120
x = new Complex64Array([
121-
1.0, // 0
122-
2.0, // 0
121+
1.0, // 0
122+
2.0, // 0
123123
3.0,
124124
4.0,
125-
5.0, // 1
125+
5.0, // 1
126126
6.0 // 1
127127
]);
128128
N = 2;
@@ -144,7 +144,7 @@ tape( 'the `main` method supports view offset', function test( t ) {
144144
1.0,
145145
-2.0,
146146
3.0, // 0
147-
-4.0, // 0
147+
-4.0, // 0
148148
5.0,
149149
-6.0,
150150
7.0, // 1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ tape( 'a module instance has a `main` method which supports an `x` stride', func
8686
xp = 0;
8787

8888
mod.write( xp, new Complex64Array([
89-
-2.0, // 0
89+
-2.0, // 0
9090
1.0, // 0
9191
3.0,
9292
-5.0,
@@ -144,7 +144,7 @@ tape( 'a module instance has a `main` method which supports negative strides', f
144144
xp = 0;
145145

146146
mod.write( xp, new Complex64Array([
147-
-2.0, // 1
147+
-2.0, // 1
148148
1.0, // 1
149149
3.0,
150150
-5.0,

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ tape( 'a module instance has an `ndarray` method which supports an `x` stride',
8686
xp = 0;
8787

8888
mod.write( xp, new Complex64Array([
89-
-2.0, // 0
89+
-2.0, // 0
9090
1.0, // 0
9191
3.0,
9292
-5.0,
9393
4.0, // 1
94-
0.0, // 1
94+
0.0, // 1
9595
-1.0,
9696
-3.0
9797
]));
@@ -125,7 +125,7 @@ tape( 'a module instance has an `ndarray` method which supports an `x` offset',
125125
-5.0,
126126
4.0, // 0
127127
0.0, // 0
128-
-1.0, // 1
128+
-1.0, // 1
129129
-3.0 // 1
130130
]));
131131
N = 2;
@@ -180,10 +180,10 @@ tape( 'a module instance has an `ndarray` method which supports negative strides
180180
-2.0,
181181
1.0,
182182
3.0, // 1
183-
-5.0, // 1
183+
-5.0, // 1
184184
4.0,
185185
0.0,
186-
-1.0, // 0
186+
-1.0, // 0
187187
-3.0 // 0
188188
]));
189189
N = 2;
@@ -213,11 +213,11 @@ tape( 'a module instance has an `ndarray` method which supports complex access p
213213
-2.0,
214214
1.0,
215215
3.0, // 1
216-
-5.0, // 1
216+
-5.0, // 1
217217
4.0,
218218
0.0,
219-
-1.0, // 0
220-
-3.0, // 0
219+
-1.0, // 0
220+
-3.0, // 0
221221
7.0,
222222
8.0
223223
]));

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tape( 'the `ndarray` method has an arity of 4', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'the `main` method computes the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector', function test( t ) {
41+
tape( 'the `ndarray` method computes the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector', function test( t ) {
4242
var x;
4343
var y;
4444

@@ -49,13 +49,13 @@ tape( 'the `main` method computes the sum of the absolute values of the real and
4949
t.end();
5050
});
5151

52-
tape( 'the `main` method supports an `x` stride', function test( t ) {
52+
tape( 'the `ndarray` method supports an `x` stride', function test( t ) {
5353
var x;
5454
var y;
5555
var N;
5656

5757
x = new Complex64Array([
58-
-2.0, // 0
58+
-2.0, // 0
5959
1.0, // 0
6060
3.0,
6161
-5.0,
@@ -72,7 +72,7 @@ tape( 'the `main` method supports an `x` stride', function test( t ) {
7272
t.end();
7373
});
7474

75-
tape( 'the `main` method supports an `x` offset', function test( t ) {
75+
tape( 'the `ndarray` method supports an `x` offset', function test( t ) {
7676
var x;
7777
var y;
7878

@@ -95,7 +95,7 @@ tape( 'the `main` method supports an `x` offset', function test( t ) {
9595
t.end();
9696
});
9797

98-
tape( 'if provided an `N` parameter less than or equal to `0`, the `main` method returns `0.0`', function test( t ) {
98+
tape( 'if provided an `N` parameter less than or equal to `0`, the `ndarray` method returns `0.0`', function test( t ) {
9999
var x;
100100
var y;
101101

@@ -110,7 +110,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the `main` method
110110
t.end();
111111
});
112112

113-
tape( 'the `main` method supports negative strides', function test( t ) {
113+
tape( 'the `ndarray` method supports negative strides', function test( t ) {
114114
var x;
115115
var y;
116116
var N;
@@ -119,10 +119,10 @@ tape( 'the `main` method supports negative strides', function test( t ) {
119119
-2.0,
120120
1.0,
121121
3.0, // 1
122-
-5.0, // 1
122+
-5.0, // 1
123123
4.0,
124124
0.0,
125-
-1.0, // 0
125+
-1.0, // 0
126126
-3.0 // 0
127127
]);
128128
N = 2;
@@ -139,7 +139,7 @@ tape( 'the `ndarray` method supports complex access patterns', function test( t
139139
var N;
140140

141141
x = new Complex64Array([
142-
-2.0, // 1
142+
-2.0, // 1
143143
1.0, // 1
144144
3.0,
145145
-5.0,

0 commit comments

Comments
 (0)