From 8eab54a87e2acee006eae0def3afce6099435e7e Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Thu, 6 Oct 2016 01:11:19 +1100 Subject: [PATCH] tests: fix bad mnemonic vector --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index 9d7db40..7dd5ea0 100644 --- a/test/index.js +++ b/test/index.js @@ -71,7 +71,7 @@ test('README example 2', function (t) { var mnemonic = proxiedbip39.generateMnemonic() t.plan(2) - t.equal(mnemonic, 'bench maximum balance appear cousin negative muscle inform enjoy chief vocal hello') + t.equal(mnemonic, 'imitate robot frame trophy nuclear regret saddle around inflict case oil spice') t.equal(bip39.validateMnemonic(mnemonic), true) })