diff --git a/tests/test_components.py b/tests/test_components.py index 83b96f0c..f351dac6 100644 --- a/tests/test_components.py +++ b/tests/test_components.py @@ -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)