fix mocha tests

Node tests were erroring out on this. Need to have "./Connection"
This commit is contained in:
Ryan X. Charles 2014-03-10 13:10:52 -04:00
parent 1b3e703fd0
commit 7f9891bc92
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ var log = imports.log || require('./util/log');
var network = imports.network || require('./networks')[config.network];
var Connection = imports.Connection ||
require('soop').load('Connection', {config: config, network: network}) ||
require('soop').load('./Connection', {config: config, network: network}) ||
require ('./Connection');
var Peer = imports.Peer || require('./Peer');