Skip to content

Commit 7922488

Browse files
committed
test: add indentation
--- 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 d87dd71 commit 7922488

File tree

5 files changed

+56
-56
lines changed

5 files changed

+56
-56
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ tape( 'main export is a function', function test( t ) {
6363
t.ok( true, __filename );
6464
t.strictEqual( typeof drot, 'function', 'main export is a function' );
6565
t.end();
66-
});
66+
} );
6767

6868
tape( 'the function has an arity of 7', function test( t ) {
6969
t.strictEqual( drot.length, 7, 'returns expected value' );
7070
t.end();
71-
});
71+
} );
7272

7373
tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) {
7474
var xbuf;
@@ -108,7 +108,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) {
108108
t.strictEqual( out, y, 'returns expected value' );
109109
}
110110
t.end();
111-
});
111+
} );
112112

113113
tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) {
114114
var xbuf;
@@ -148,7 +148,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t )
148148
t.strictEqual( out, y, 'returns expected value' );
149149
}
150150
t.end();
151-
});
151+
} );
152152

153153
tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) {
154154
var xbuf;
@@ -188,7 +188,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t )
188188
t.strictEqual( out, y, 'returns expected value' );
189189
}
190190
t.end();
191-
});
191+
} );
192192

193193
tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) {
194194
var xbuf;
@@ -228,7 +228,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t )
228228
t.strictEqual( out, y, 'returns expected value' );
229229
}
230230
t.end();
231-
});
231+
} );
232232

233233
tape( 'the function supports an `x` stride', function test( t ) {
234234
var xe;
@@ -260,7 +260,7 @@ tape( 'the function supports an `x` stride', function test( t ) {
260260
isApprox( t, y, ye, 2.0 );
261261

262262
t.end();
263-
});
263+
} );
264264

265265
tape( 'the function supports a `y` stride', function test( t ) {
266266
var xe;
@@ -292,7 +292,7 @@ tape( 'the function supports a `y` stride', function test( t ) {
292292
t.deepEqual( y, ye, 'returns expected value' );
293293

294294
t.end();
295-
});
295+
} );
296296

297297
tape( 'the function returns a reference to the second input array', function test( t ) {
298298
var out;
@@ -306,7 +306,7 @@ tape( 'the function returns a reference to the second input array', function tes
306306

307307
t.strictEqual( out, y, 'returns expected value' );
308308
t.end();
309-
});
309+
} );
310310

311311
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', function test( t ) {
312312
var xe;
@@ -332,7 +332,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav
332332
t.deepEqual( y, ye, 'returns expected value' );
333333

334334
t.end();
335-
});
335+
} );
336336

337337
tape( 'the function supports negative strides', function test( t ) {
338338
var xe;
@@ -368,7 +368,7 @@ tape( 'the function supports negative strides', function test( t ) {
368368
isApprox( t, y, ye, 20.0 );
369369

370370
t.end();
371-
});
371+
} );
372372

373373
tape( 'the function supports complex access patterns', function test( t ) {
374374
var xe;
@@ -404,4 +404,4 @@ tape( 'the function supports complex access patterns', function test( t ) {
404404
isApprox( t, y, ye, 5.0 );
405405

406406
t.end();
407-
});
407+
} );

lib/node_modules/@stdlib/blas/base/drot/test/test.drot.native.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ tape( 'main export is a function', opts, function test( t ) {
7272
t.ok( true, __filename );
7373
t.strictEqual( typeof drot, 'function', 'main export is a function' );
7474
t.end();
75-
});
75+
} );
7676

7777
tape( 'the function has an arity of 7', opts, function test( t ) {
7878
t.strictEqual( drot.length, 7, 'returns expected value' );
7979
t.end();
80-
});
80+
} );
8181

8282
tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test( t ) {
8383
var xbuf;
@@ -117,7 +117,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', opts, function test(
117117
t.strictEqual( out, y, 'returns expected value' );
118118
}
119119
t.end();
120-
});
120+
} );
121121

122122
tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test( t ) {
123123
var xbuf;
@@ -157,7 +157,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', opts, function test
157157
t.strictEqual( out, y, 'returns expected value' );
158158
}
159159
t.end();
160-
});
160+
} );
161161

162162
tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test( t ) {
163163
var xbuf;
@@ -197,7 +197,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', opts, function test
197197
t.strictEqual( out, y, 'returns expected value' );
198198
}
199199
t.end();
200-
});
200+
} );
201201

202202
tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function test( t ) {
203203
var xbuf;
@@ -237,7 +237,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', opts, function tes
237237
t.strictEqual( out, y, 'returns expected value' );
238238
}
239239
t.end();
240-
});
240+
} );
241241

242242
tape( 'the function supports an `x` stride', opts, function test( t ) {
243243
var xe;
@@ -269,7 +269,7 @@ tape( 'the function supports an `x` stride', opts, function test( t ) {
269269
isApprox( t, y, ye, 2.0 );
270270

271271
t.end();
272-
});
272+
} );
273273

274274
tape( 'the function supports a `y` stride', opts, function test( t ) {
275275
var xe;
@@ -301,7 +301,7 @@ tape( 'the function supports a `y` stride', opts, function test( t ) {
301301
t.deepEqual( y, ye, 'returns expected value' );
302302

303303
t.end();
304-
});
304+
} );
305305

306306
tape( 'the function returns a reference to the second input array', opts, function test( t ) {
307307
var out;
@@ -315,7 +315,7 @@ tape( 'the function returns a reference to the second input array', opts, functi
315315

316316
t.strictEqual( out, y, 'returns expected value' );
317317
t.end();
318-
});
318+
} );
319319

320320
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', opts, function test( t ) {
321321
var xe;
@@ -341,7 +341,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav
341341
t.deepEqual( y, ye, 'returns expected value' );
342342

343343
t.end();
344-
});
344+
} );
345345

346346
tape( 'the function supports negative strides', opts, function test( t ) {
347347
var xe;
@@ -377,7 +377,7 @@ tape( 'the function supports negative strides', opts, function test( t ) {
377377
isApprox( t, y, ye, 20.0 );
378378

379379
t.end();
380-
});
380+
} );
381381

382382
tape( 'the function supports complex access patterns', opts, function test( t ) {
383383
var xe;
@@ -413,4 +413,4 @@ tape( 'the function supports complex access patterns', opts, function test( t )
413413
isApprox( t, y, ye, 5.0 );
414414

415415
t.end();
416-
});
416+
} );

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ tape( 'main export is a function', function test( t ) {
3939
t.ok( true, __filename );
4040
t.strictEqual( typeof drot, 'function', 'main export is a function' );
4141
t.end();
42-
});
42+
} );
4343

4444
tape( 'attached to the main export is a method providing an ndarray interface', function test( t ) {
4545
t.strictEqual( typeof drot.ndarray, 'function', 'method is a function' );
4646
t.end();
47-
});
47+
} );
4848

4949
tape( 'if a native implementation is available, the main export is the native implementation', opts, function test( t ) {
5050
var drot = proxyquire( './../lib', {
@@ -61,7 +61,7 @@ tape( 'if a native implementation is available, the main export is the native im
6161
function mock() {
6262
// Mock...
6363
}
64-
});
64+
} );
6565

6666
tape( 'if a native implementation is not available, the main export is a JavaScript implementation', opts, function test( t ) {
6767
var drot;
@@ -79,4 +79,4 @@ tape( 'if a native implementation is not available, the main export is a JavaScr
7979
function tryRequire() {
8080
return new Error( 'Cannot find module' );
8181
}
82-
});
82+
} );

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ tape( 'main export is a function', function test( t ) {
6363
t.ok( true, __filename );
6464
t.strictEqual( typeof drot, 'function', 'main export is a function' );
6565
t.end();
66-
});
66+
} );
6767

6868
tape( 'the function has an arity of 9', function test( t ) {
6969
t.strictEqual( drot.length, 9, 'returns expected value' );
7070
t.end();
71-
});
71+
} );
7272

7373
tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) {
7474
var xbuf;
@@ -113,7 +113,7 @@ tape( 'the function applies a plane rotation (sx=1, sy=1)', function test( t ) {
113113
t.strictEqual( out, y, 'returns expected value' );
114114
}
115115
t.end();
116-
});
116+
} );
117117

118118
tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t ) {
119119
var xbuf;
@@ -158,7 +158,7 @@ tape( 'the function applies a plane rotation (sx=2, sy=-2)', function test( t )
158158
t.strictEqual( out, y, 'returns expected value' );
159159
}
160160
t.end();
161-
});
161+
} );
162162

163163
tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t ) {
164164
var xbuf;
@@ -202,7 +202,7 @@ tape( 'the function applies a plane rotation (sx=-2, sy=1)', function test( t )
202202
t.strictEqual( out, y, 'returns expected value' );
203203
}
204204
t.end();
205-
});
205+
} );
206206

207207
tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t ) {
208208
var xbuf;
@@ -247,7 +247,7 @@ tape( 'the function applies a plane rotation (sx=-1, sy=-2)', function test( t )
247247
t.strictEqual( out, y, 'returns expected value' );
248248
}
249249
t.end();
250-
});
250+
} );
251251

252252
tape( 'the function supports an `x` stride', function test( t ) {
253253
var xe;
@@ -279,7 +279,7 @@ tape( 'the function supports an `x` stride', function test( t ) {
279279
isApprox( t, y, ye, 2.0 );
280280

281281
t.end();
282-
});
282+
} );
283283

284284
tape( 'the function supports an `x` offset', function test( t ) {
285285
var xe;
@@ -311,7 +311,7 @@ tape( 'the function supports an `x` offset', function test( t ) {
311311
isApprox( t, y, ye, 2.0 );
312312

313313
t.end();
314-
});
314+
} );
315315

316316
tape( 'the function supports a `y` stride', function test( t ) {
317317
var xe;
@@ -343,7 +343,7 @@ tape( 'the function supports a `y` stride', function test( t ) {
343343
isApprox( t, y, ye, 1.0 );
344344

345345
t.end();
346-
});
346+
} );
347347

348348
tape( 'the function supports a `y` offset', function test( t ) {
349349
var xe;
@@ -375,7 +375,7 @@ tape( 'the function supports a `y` offset', function test( t ) {
375375
isApprox( t, y, ye, 1.0 );
376376

377377
t.end();
378-
});
378+
} );
379379

380380
tape( 'the function returns a reference to the second input array', function test( t ) {
381381
var out;
@@ -389,7 +389,7 @@ tape( 'the function returns a reference to the second input array', function tes
389389

390390
t.strictEqual( out, y, 'returns expected value' );
391391
t.end();
392-
});
392+
} );
393393

394394
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both input arrays unchanged', function test( t ) {
395395
var xe;
@@ -415,7 +415,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function leav
415415
t.deepEqual( y, ye, 'returns expected value' );
416416

417417
t.end();
418-
});
418+
} );
419419

420420
tape( 'the function supports negative strides', function test( t ) {
421421
var xe;
@@ -451,7 +451,7 @@ tape( 'the function supports negative strides', function test( t ) {
451451
isApprox( t, y, ye, 20.0 );
452452

453453
t.end();
454-
});
454+
} );
455455

456456
tape( 'the function supports complex access patterns', function test( t ) {
457457
var xe;
@@ -487,4 +487,4 @@ tape( 'the function supports complex access patterns', function test( t ) {
487487
isApprox( t, y, ye, 5.0 );
488488

489489
t.end();
490-
});
490+
} );

0 commit comments

Comments
 (0)