@@ -232,17 +232,17 @@ def test_jump_errors(default_kwargs):
232
232
class_kwargs , _ , _ = _to_class_kwargs (default_kwargs )
233
233
endog = class_kwargs ["endog" ]
234
234
period = class_kwargs ["period" ]
235
- with pytest .raises (ValueError , match = "low_pass_jump must be a positve " ):
235
+ with pytest .raises (ValueError , match = "low_pass_jump must be a positive " ):
236
236
STL (endog = endog , period = period , low_pass_jump = 0 )
237
- with pytest .raises (ValueError , match = "low_pass_jump must be a positve " ):
237
+ with pytest .raises (ValueError , match = "low_pass_jump must be a positive " ):
238
238
STL (endog = endog , period = period , low_pass_jump = 1.0 )
239
- with pytest .raises (ValueError , match = "seasonal_jump must be a positve " ):
239
+ with pytest .raises (ValueError , match = "seasonal_jump must be a positive " ):
240
240
STL (endog = endog , period = period , seasonal_jump = 0 )
241
- with pytest .raises (ValueError , match = "seasonal_jump must be a positve " ):
241
+ with pytest .raises (ValueError , match = "seasonal_jump must be a positive " ):
242
242
STL (endog = endog , period = period , seasonal_jump = 1.0 )
243
- with pytest .raises (ValueError , match = "trend_jump must be a positve " ):
243
+ with pytest .raises (ValueError , match = "trend_jump must be a positive " ):
244
244
STL (endog = endog , period = period , trend_jump = 0 )
245
- with pytest .raises (ValueError , match = "trend_jump must be a positve " ):
245
+ with pytest .raises (ValueError , match = "trend_jump must be a positive " ):
246
246
STL (endog = endog , period = period , trend_jump = 1.0 )
247
247
248
248
0 commit comments