From 464984682fb88b68c864bbb70cafc1ac40b67758 Mon Sep 17 00:00:00 2001 From: d-yokoi Date: Sat, 23 Mar 2019 22:06:58 +0900 Subject: [PATCH] fix unit test --- test/index.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/index.js b/test/index.js index b208567..b76fa41 100644 --- a/test/index.js +++ b/test/index.js @@ -1,9 +1,8 @@ -var bip39 = require('../') -var Buffer = require('safe-buffer').Buffer +var bip39 = require('../src') var download = require('../util/wordlists').download var WORDLISTS = { - english: require('../wordlists/english.json'), - japanese: require('../wordlists/japanese.json'), + english: require('../src/wordlists/english.json'), + japanese: require('../src/wordlists/japanese.json'), custom: require('./wordlist.json') }