diff --git a/zipline/test/test_messaging.py b/zipline/test/test_messaging.py index a8344283..f8c3a68d 100644 --- a/zipline/test/test_messaging.py +++ b/zipline/test/test_messaging.py @@ -9,7 +9,6 @@ Test suite for the messaging infrastructure of QSim. # # nosetests --processes=5 -import zipline.util as qutil import zipline.messaging as qmsg from zipline.transforms.technical import MovingAverage @@ -21,25 +20,6 @@ from zipline.test.client import TestClient # it up as a test. class SimulatorTestCase(object): - def setUp(self): - qutil.configure_logging() - - """ - Generate some config objects for the datafeed, sources, and transforms. - """ - - # TODO: new logic so we don't have to hardcode these - self.addresses = { - 'sync_address' : "tcp://127.0.0.1:10100", - 'data_address' : "tcp://127.0.0.1:10101", - 'feed_address' : "tcp://127.0.0.1:10102", - 'merge_address' : "tcp://127.0.0.1:10103", - 'result_address' : "tcp://127.0.0.1:10104" - } - - # TODO: remove? - self.addressesblarg = "test" - def get_simulator(self): """ Return the simulator instance to be tested.