From d299d1b8765b74040971cc77e6483e50eb26bd62 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Thu, 22 Nov 2018 06:40:40 +0700 Subject: [PATCH] Fix lint errors --- test/unit.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit.js b/test/unit.js index 72379ba..88a6d37 100644 --- a/test/unit.js +++ b/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 => { new Array(1000).fill().forEach(() => { - const words = dogeSeed().split(' '); - - t.not(words[0], words[2]); + const words = dogeSeed().split(' '); + + t.not(words[0], words[2]); }); });