Skip to content

Commit 879456a

Browse files
committed
chore: trigger CI
1 parent bba279b commit 879456a

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/math/base/special/betainc/test

lib/node_modules/@stdlib/math/base/special/betainc/test/test.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ tape( 'the function evaluates the lower unregularized incomplete beta function',
102102
t.strictEqual( isnan( y ), true, 'returns expected value' );
103103
} else if ( abs( expected[ i ] ) < 1e-300 ) {
104104
t.ok( abs( y ) < 1e-300, 'returns expected value' );
105-
} else if ( expected[ i ] === Infinity || expected[ i ] === -Infinity ) {
105+
} else if (
106+
expected[ i ] === Infinity ||
107+
expected[ i ] === -Infinity
108+
) {
106109
t.strictEqual( y, expected[ i ], 'returns expected value' );
107110
} else {
108111
t.strictEqual(isAlmostSameValue( y, expected[ i ], 128 ), true, 'returns expected value');
@@ -123,7 +126,10 @@ tape( 'the function evaluates the upper regularized incomplete beta function', f
123126
t.strictEqual( isnan( y ), true, 'returns expected value' );
124127
} else if ( abs( expected[ i ] ) < 1e-300 ) {
125128
t.ok( abs( y ) < 1e-300, 'returns expected value' );
126-
} else if ( expected[ i ] === Infinity || expected[ i ] === -Infinity ) {
129+
} else if (
130+
expected[ i ] === Infinity ||
131+
expected[ i ] === -Infinity
132+
) {
127133
t.strictEqual( y, expected[ i ], 'returns expected value' );
128134
} else {
129135
t.strictEqual(isAlmostSameValue( y, expected[ i ], 80 ), true, 'returns expected value');
@@ -144,7 +150,10 @@ tape( 'the function evaluates the upper unregularized incomplete beta function',
144150
t.strictEqual( isnan( y ), true, 'returns expected value' );
145151
} else if ( abs( expected[ i ] ) < 1e-300 ) {
146152
t.ok( abs( y ) < 1e-300, 'returns expected value' );
147-
} else if ( expected[ i ] === Infinity || expected[ i ] === -Infinity ) {
153+
} else if (
154+
expected[ i ] === Infinity ||
155+
expected[ i ] === -Infinity
156+
) {
148157
t.strictEqual( y, expected[ i ], 'returns expected value' );
149158
} else {
150159
t.strictEqual(isAlmostSameValue( y, expected[ i ], 120 ), true, 'returns expected value');

0 commit comments

Comments
 (0)