From 6fa50f1dc2481300a0308083e8990ed2fe3ce8d8 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Tue, 19 Aug 2014 13:19:16 -0400 Subject: [PATCH] fix test 5 --- test/test.Wallet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.Wallet.js b/test/test.Wallet.js index c23a27294..3406cf42c 100644 --- a/test/test.Wallet.js +++ b/test/test.Wallet.js @@ -1093,8 +1093,8 @@ describe('Wallet model', function() { it('should throw if network is different', function() { var backup = copayConfig.forceNetwork; copayConfig.forceNetwork = true; - config.networkName = 'testnet'; - cachedCreateW2.should.throw(Error); + config.networkName = 'livenet'; + createW2.should.throw(Error); copayConfig.forceNetwork = backup; }); });