Skip to content

Commit

Permalink
Fix Tosser
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed May 10, 2018
1 parent cc54226 commit 778049e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/check/runner/Tosser.ts
Expand Up @@ -6,8 +6,8 @@ import Shrinkable from '../arbitrary/definition/Shrinkable';
import IProperty from '../property/IProperty';

/** @hidden */
function lazyGenerate<Ts>(generator: IProperty<Ts>, rng: prand.RandomGenerator, idx: number): () => Shrinkable<Ts> {
return () => generator.generate(new Random(rng), idx);
function lazyGenerate<Ts>(generator: IProperty<Ts>, rng: prand.RandomGenerator): () => Shrinkable<Ts> {
return () => generator.generate(new Random(rng));
}

/** @hidden */
Expand Down

0 comments on commit 778049e

Please sign in to comment.