diff --git a/tests/unit/contracts/graph/test_semantic_manifest.py b/tests/unit/contracts/graph/test_semantic_manifest.py index 2351a95715a..f4cbd4bca78 100644 --- a/tests/unit/contracts/graph/test_semantic_manifest.py +++ b/tests/unit/contracts/graph/test_semantic_manifest.py @@ -67,16 +67,16 @@ def test_require_yaml_configuration_for_mf_time_spines( ), ( MetricTypeParams( - window=MetricTimeWindow(count=1, granularity=TimeGranularity.MONTH), - grain_to_date=TimeGranularity.MONTH, + cumulative_type_params=CumulativeTypeParams( + grain_to_date=TimeGranularity.MONTH, + ) ), - 1, + 0, ), ( MetricTypeParams( cumulative_type_params=CumulativeTypeParams( window=MetricTimeWindow(count=1, granularity=TimeGranularity.MONTH), - grain_to_date=TimeGranularity.MONTH, ) ), 0,