Skip to content

Commit aa2f9ea

Browse files
committed
Fix broken test
1 parent fd79353 commit aa2f9ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/random/base/beta/test/test.factory.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ tape( 'attached to the returned function is the generator seed', function test(
169169
var beta = factory({
170170
'seed': 12345
171171
});
172-
t.equal( isUint32Array( beta.SEED ), 'number', 'has `SEED` property' );
172+
t.equal( isUint32Array( beta.SEED ), true, 'has `SEED` property' );
173173
t.equal( beta.SEED[ 0 ], 12345, 'equal to provided seed' );
174174
t.end();
175175
});

0 commit comments

Comments
 (0)