Browse Source

Fix lint errors

pull/2/head
Luke Childs 6 years ago
parent
commit
d299d1b876
  1. 6
      test/unit.js

6
test/unit.js

@ -18,9 +18,9 @@ test('Seed phrases contain the words "much", "such" and "very"', t => {
test('Don\'t include the same Doge modifier twice', t => { test('Don\'t include the same Doge modifier twice', t => {
new Array(1000).fill().forEach(() => { new Array(1000).fill().forEach(() => {
const words = dogeSeed().split(' '); const words = dogeSeed().split(' ');
t.not(words[0], words[2]); t.not(words[0], words[2]);
}); });
}); });

Loading…
Cancel
Save