Skip to content

Commit 8a98d67

Browse files
committed
Fix test
1 parent a312a75 commit 8a98d67

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/iter/push/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/iter/push/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,10 +495,10 @@ tape( 'if an environment supports `Symbol.iterator` and the provided iterator is
495495
opts = {
496496
'seed': 12345
497497
};
498-
rand = randu( opts, 1, 2, 3 );
498+
rand = randu( opts );
499499
rand[ '__ITERATOR_SYMBOL__' ] = factory;
500500

501-
it1 = iterPush( rand );
501+
it1 = iterPush( rand, 1, 2, 3 );
502502
t.equal( typeof it1[ '__ITERATOR_SYMBOL__' ], 'function', 'has method' );
503503
t.equal( it1[ '__ITERATOR_SYMBOL__' ].length, 0, 'has zero arity' );
504504

0 commit comments

Comments
 (0)