Skip to content

Commit bde1562

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: passed - 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 eb555e4 commit bde1562

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/lognormal/mean/src/addon.c

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
#include "stdlib/stats/base/dists/lognormal/mean.h"
2020
#include "stdlib/math/base/napi/binary.h"
2121

22-
// cppcheck-suppress shadowFunction
2322
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_lognormal_mean )

lib/node_modules/@stdlib/stats/base/dists/lognormal/mean/test/test.native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tape( 'the function returns the expected value of a lognormal distribution', opt
100100
sigma = data.sigma;
101101
for ( i = 0; i < mu.length; i++ ) {
102102
y = mean( mu[i], sigma[i] );
103-
if ( expected[i] !== null) {
103+
if ( expected[i] !== null ) {
104104
if ( y === expected[i] ) {
105105
t.equal( y, expected[i], 'mu:'+mu[i]+', sigma: '+sigma[i]+', y: '+y+', expected: '+expected[i] );
106106
} else {

0 commit comments

Comments
 (0)