Skip to content

Commit d5693c9

Browse files
committed
Auto-generated commit
1 parent 7a62c55 commit d5693c9

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,7 @@ A total of 41 issues were closed in this release:
459459

460460
<details>
461461

462+
- [`f51b7b2`](https://github.com/stdlib-js/stdlib/commit/f51b7b2ea5c3cceca335f3089fba079d4290bde7) - **test:** update tests to match valid domain of acovercos _(by Karan Anand)_
462463
- [`e525deb`](https://github.com/stdlib-js/stdlib/commit/e525debf09ec10ada9ec72ea4674ee9fd8e049cb) - **fix:** use correct inverse coversed cosine formula _(by Karan Anand)_
463464
- [`56388ac`](https://github.com/stdlib-js/stdlib/commit/56388aceeac1d76fd6f554c8871a55d908589415) - **chore:** add structured package data _(by Karan Anand)_
464465
- [`ecdd35d`](https://github.com/stdlib-js/stdlib/commit/ecdd35d1580a9b4460e6a220f47bcf252c8e77bc) - **chore:** fix EditorConfig lint errors [(#6932)](https://github.com/stdlib-js/stdlib/pull/6932) _(by Lalit Narayan Yadav)_

iter/special/acovercos/test/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ tape( 'the function returns an iterator protocol-compliant object', function tes
7070
var r;
7171
var i;
7272

73-
it = iterAcovercos( uniform( -2.0, 0.0 ) );
73+
it = iterAcovercos( uniform( 0.0, 2.0 ) );
7474
t.equal( it.next.length, 0, 'has zero arity' );
7575

7676
for ( i = 0; i < 100; i++ ) {
@@ -90,10 +90,10 @@ tape( 'the function returns an iterator protocol-compliant object which computes
9090
var i;
9191

9292
N = 101;
93-
it = iterAcovercos( linspace( -2.0, 0.0, N ) );
93+
it = iterAcovercos( linspace( 0.0, 2.0, N ) );
9494
t.equal( it.next.length, 0, 'has zero arity' );
9595

96-
x = linspace( -2.0, 0.0, N );
96+
x = linspace( 0.0, 2.0, N );
9797
for ( i = 0; i < N; i++ ) {
9898
r = it.next();
9999
expected = acovercos( x.next().value );
@@ -166,7 +166,7 @@ tape( 'the returned iterator has a `return` method for closing an iterator (no a
166166
var it;
167167
var r;
168168

169-
it = iterAcovercos( uniform( -2.0, 0.0 ) );
169+
it = iterAcovercos( uniform( 0.0, 2.0 ) );
170170

171171
r = it.next();
172172
t.equal( typeof r.value, 'number', 'returns a number' );
@@ -191,7 +191,7 @@ tape( 'the returned iterator has a `return` method for closing an iterator (argu
191191
var it;
192192
var r;
193193

194-
it = iterAcovercos( uniform( -2.0, 0.0 ) );
194+
it = iterAcovercos( uniform( 0.0, 2.0 ) );
195195

196196
r = it.next();
197197
t.equal( typeof r.value, 'number', 'returns a number' );

0 commit comments

Comments
 (0)