Skip to content

Commit

Permalink
upgrade to latest AVA
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 7, 2016
1 parent 3ee5bc0 commit 213433c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.js
Expand Up @@ -5,9 +5,9 @@ test(t => {
t.true(m.female.length > 0);
t.true(m.male.length > 0);
t.true(m.all.length > 0);
t.ok(m.femaleRandom());
t.ok(m.maleRandom());
t.ok(m.allRandom());
t.truthy(m.femaleRandom());
t.truthy(m.maleRandom());
t.truthy(m.allRandom());
t.not(m.allRandom(), m.allRandom());
t.is(m.all[0], 'Bella');
t.is(m.all[1], 'Max');
Expand Down

0 comments on commit 213433c

Please sign in to comment.