Skip to content

Commit e77ae86

Browse files
committed
Fix broken tests
1 parent 1953715 commit e77ae86

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Binary file not shown.

lib/node_modules/@stdlib/random/streams/randn/test/test.cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var boxMuller = require( '@stdlib/random/base/box-muller' ).factory;
3030
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
3131
var existsSync = require( '@stdlib/fs/exists' ).sync;
3232
var unlinkSync = require( '@stdlib/fs/unlink' ).sync;
33-
var Uint32Array = require( '@stdlib/array/int32' );
33+
var Uint32Array = require( '@stdlib/array/uint32' );
3434
var Uint8Array = require( '@stdlib/array/uint8' );
3535
var gcopy = require( '@stdlib/blas/base/gcopy' );
3636
var replace = require( '@stdlib/string/replace' );

lib/node_modules/@stdlib/random/streams/randn/test/test.main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ tape( 'attached to the returned stream is the underlying PRNG', function test( t
462462
tape( 'attached to the returned stream is the generator seed', function test( t ) {
463463
var s = randomStream({
464464
'seed': 12345,
465-
'name': 'mt19937'
465+
'name': 'improved-ziggurat'
466466
});
467467

468468
t.equal( isUint32Array( s.seed ), true, 'has property' );
@@ -486,7 +486,7 @@ tape( 'attached to the returned stream is the generator seed (array seed)', func
486486
seed = [ 1234, 5678 ];
487487
s = randomStream({
488488
'seed': seed,
489-
'name': 'mt19937'
489+
'name': 'improved-ziggurat'
490490
});
491491

492492
actual = s.seed;
@@ -512,7 +512,7 @@ tape( 'attached to the returned stream is the generator seed length', function t
512512

513513
tape( 'attached to the returned stream is the generator state', function test( t ) {
514514
var s = randomStream({
515-
'name': 'mt19937'
515+
'name': 'improved-ziggurat'
516516
});
517517
t.equal( isUint32Array( s.state ), true, 'has property' );
518518

0 commit comments

Comments
 (0)