From 517dfd2b307f99b3dae03bd57cf8f9db298011de Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 24 Dec 2024 20:23:43 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 ++- test/test.js | 2 +- test/test.native.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01ed0bb..bab1a64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-12-23) +## Unreleased (2024-12-24)
@@ -34,6 +34,7 @@ This release closes the following issue:
+- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_ - [`a72a67a`](https://github.com/stdlib-js/stdlib/commit/a72a67a667bcf694e5f8f2bc3c8e62714e5832bc) - **chore:** minor clean-up _(by Philipp Burckhardt)_ - [`3c0ff2c`](https://github.com/stdlib-js/stdlib/commit/3c0ff2cdae8f78f99cdf09db8dc150f3f0e2cd67) - **feat:** add C implementation for `stats/base/dists/laplace/entropy` [(#4025)](https://github.com/stdlib-js/stdlib/pull/4025) _(by Aayush Khanna, Philipp Burckhardt)_ diff --git a/test/test.js b/test/test.js index 57e60b9..2f4ff00 100644 --- a/test/test.js +++ b/test/test.js @@ -91,7 +91,7 @@ tape( 'the function returns the differential entropy of a Laplace distribution', b = data.b; for ( i = 0; i < mu.length; i++ ) { y = entropy( mu[i], b[i] ); - if ( expected[i] !== null) { + if ( expected[i] !== null ) { if ( y === expected[i] ) { t.equal( y, expected[i], 'mu:'+mu[i]+', b: '+b[i]+', y: '+y+', expected: '+expected[i] ); } else { diff --git a/test/test.native.js b/test/test.native.js index 93021c1..50ddf2b 100644 --- a/test/test.native.js +++ b/test/test.native.js @@ -100,7 +100,7 @@ tape( 'the function returns the differential entropy of a Laplace distribution', b = data.b; for ( i = 0; i < mu.length; i++ ) { y = entropy( mu[i], b[i] ); - if ( expected[i] !== null) { + if ( expected[i] !== null ) { if ( y === expected[i] ) { t.equal( y, expected[i], 'mu:'+mu[i]+', b: '+b[i]+', y: '+y+', expected: '+expected[i] ); } else {