mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-12 19:47:03 +08:00
TST: updated test to the fact that we aren't creating new lists to store
orders
This commit is contained in:
@@ -253,7 +253,7 @@ class FinanceTestCase(TestCase):
|
||||
oo = blotter.open_orders
|
||||
self.assertEqual(len(oo), 1)
|
||||
self.assertTrue(sid in oo)
|
||||
order_list = oo[sid]
|
||||
order_list = oo[sid][:] # make copy
|
||||
self.assertEqual(order_count, len(order_list))
|
||||
|
||||
for i in range(order_count):
|
||||
|
||||
Reference in New Issue
Block a user