@@ -466,7 +466,7 @@ def test_error_ensure(self, arraylike_or_tf, dt, exception):
466466
467467
468468class TestTfCombineSplit :
469- """Test :func:`combine ` and :func:`split `."""
469+ """Test :func:`combine_tf ` and :func:`split_tf `."""
470470
471471 @pytest .mark .parametrize (
472472 "tf_array, tf" ,
@@ -621,9 +621,9 @@ class TestTfCombineSplit:
621621 ),
622622 ],
623623 )
624- def test_combine (self , tf_array , tf ):
624+ def test_combine_tf (self , tf_array , tf ):
625625 """Test combining transfer functions."""
626- tf_combined = ctrl .combine (tf_array )
626+ tf_combined = ctrl .combine_tf (tf_array )
627627 assert _tf_close_coeff (tf_combined , tf )
628628
629629 @pytest .mark .parametrize (
@@ -706,9 +706,9 @@ def test_combine(self, tf_array, tf):
706706 ),
707707 ],
708708 )
709- def test_split (self , tf_array , tf ):
709+ def test_split_tf (self , tf_array , tf ):
710710 """Test splitting transfer functions."""
711- tf_split = ctrl .split (tf )
711+ tf_split = ctrl .split_tf (tf )
712712 # Test entry-by-entry
713713 for i in range (tf_split .shape [0 ]):
714714 for j in range (tf_split .shape [1 ]):
@@ -718,8 +718,8 @@ def test_split(self, tf_array, tf):
718718 )
719719 # Test combined
720720 assert _tf_close_coeff (
721- ctrl .combine (tf_split ),
722- ctrl .combine (tf_array ),
721+ ctrl .combine_tf (tf_split ),
722+ ctrl .combine_tf (tf_array ),
723723 )
724724
725725 @pytest .mark .parametrize (
@@ -817,10 +817,10 @@ def test_split(self, tf_array, tf):
817817 ),
818818 ],
819819 )
820- def test_error_combine (self , tf_array , exception ):
820+ def test_error_combine_tf (self , tf_array , exception ):
821821 """Test error cases."""
822822 with pytest .raises (exception ):
823- ctrl .combine (tf_array )
823+ ctrl .combine_tf (tf_array )
824824
825825
826826def _tf_close_coeff (tf_a , tf_b , rtol = 1e-5 , atol = 1e-8 ):
0 commit comments