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