Skip to content

Commit 70b3231

Browse files
author
Aadish Jain
committed
feat(binomial-cdf): fixing test.native.js
1 parent 29e52b4 commit 70b3231

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/binomial/cdf/test

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/binomial/cdf/test/test.native.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tape( 'the function evaluates the cdf for `k` given a small range `n` and `p`',
9292
var i;
9393

9494
expected = smallSmallRange.expected;
95-
k = smallSmallRange.k;
95+
k = smallSmallRange.x;
9696
n = smallSmallRange.n;
9797
p = smallSmallRange.p;
9898
for ( i = 0; i < k.length; i++ )
@@ -122,7 +122,7 @@ tape( 'the function evaluates the cdf for `k` given a medium range `n` and `p`',
122122
var y;
123123
var i;
124124
expected = smallHighRange.expected;
125-
k = smallHighRange.k;
125+
k = smallHighRange.x;
126126
n = smallHighRange.n;
127127
p = smallHighRange.p;
128128
for ( i = 0; i < k.length; i++ )
@@ -154,7 +154,7 @@ tape( 'the function evaluates the cdf for `k` given a large range `n` and `p`',
154154

155155
expected = highSmallRange.expected;
156156
n = highSmallRange.n;
157-
k = highSmallRange.k;
157+
k = highSmallRange.x;
158158
p = highSmallRange.p;
159159
for ( i = 0; i < k.length; i++ )
160160
{
@@ -184,7 +184,7 @@ tape( 'the function evaluates the cdf for `k` given a large range `n` and `p`',
184184
var i;
185185

186186
expected = highHighRange.expected;
187-
k = highHighRange.k;
187+
k = highHighRange.x;
188188
n = highHighRange.n;
189189
p = highHighRange.p;
190190
for ( i = 0; i < k.length; i++ )

0 commit comments

Comments
 (0)