Fix tests, address commentary from @braydonf.

This commit is contained in:
Eric Martindale 2015-03-24 17:57:39 -04:00
parent a7d75cb25b
commit c759401373
2 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,7 @@ function addNetwork(data) {
}); });
_.each(_.values(network), function(value) { _.each(_.values(network), function(value) {
if (value && !_.isObject(value)) { if (!_.isUndefined(value) && !_.isObject(value)) {
networkMaps[value] = network; networkMaps[value] = network;
} }
}); });

View File

@ -57,7 +57,7 @@ describe('Networks', function() {
}; };
networks.add(custom); networks.add(custom);
var network = networks.get(undefined); var network = networks.get(undefined);
should.not.exist( network ); should.not.exist(network);
}); });
var constants = ['name', 'alias', 'pubkeyhash', 'scripthash', 'xpubkey', 'xprivkey']; var constants = ['name', 'alias', 'pubkeyhash', 'scripthash', 'xpubkey', 'xprivkey'];