patching test to match new MovingAverage init.

This commit is contained in:
fawce
2012-08-07 15:46:56 -04:00
parent dc16d6ec9e
commit acc88793ad
+3 -2
View File
@@ -351,8 +351,9 @@ class ComponentTestCase(TestCase):
passthrough = StatefulTransform(Passthrough)
mavg_price = StatefulTransform(
MovingAverage,
timedelta(minutes = 20),
['price']
['price'],
market_aware = False,
delta=timedelta(minutes = 20)
)
merged_gen = merged_transforms(sorted, passthrough, mavg_price)