Skip to content

Commit d480d95

Browse files
committed
chore: make consistent
--- 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 2f6914b commit d480d95

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/ndarray/base/includes/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/ndarray/base/includes/test/test.3d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ tape( 'the function tests whether a 3-dimensional ndarray contains a specified v
261261

262262
x = ndarray( dt, oneTo( numel( sh )*2, dt ), sh, st, o, ord );
263263

264-
v = scalar2ndarray( -1.0, {
264+
v = scalar2ndarray( 8.0, {
265265
'dtype': 'float64'
266266
});
267267
actual = includes( [ x, v ] );
@@ -297,7 +297,7 @@ tape( 'the function tests whether a 3-dimensional ndarray contains a specified v
297297

298298
x = ndarray( dt, oneTo( numel( sh )*2, dt ), sh, st, o, ord );
299299

300-
v = scalar2ndarray( -1.0, {
300+
v = scalar2ndarray( 8.0, {
301301
'dtype': 'float64'
302302
});
303303
actual = includes( [ x, v ] );
@@ -333,7 +333,7 @@ tape( 'the function tests whether a 3-dimensional ndarray contains a specified v
333333

334334
x = ndarray( dt, oneTo( numel( sh )*2, dt ), sh, st, o, ord );
335335

336-
v = scalar2ndarray( -1.0, {
336+
v = scalar2ndarray( 8.0, {
337337
'dtype': 'float64'
338338
});
339339
actual = includes( [ x, v ] );

0 commit comments

Comments
 (0)