Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
basic tests green
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCouper committed Jun 1, 2016
1 parent 5fcdf35 commit 4a6cd00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/random.js
Expand Up @@ -45,7 +45,7 @@ test('`Random.intUpTo` plucks a random value from zero—max inclusive', (t) =>
})

test('`Random.shuffle` takes an array and returns a new shuffled version', (t) => {
const input = Random.shuffle(input, 1)
const input = Random.shuffle([1,2,3,4,5,6], 1)

t.deepEqual(input, [1,2,4,5,6,3])
})

0 comments on commit 4a6cd00

Please sign in to comment.