Skip to content

Commit c2e3993

Browse files
committed
add kwarg tests for lqe, dlqe
1 parent a4bb80e commit c2e3993

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

control/tests/kwargs_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def test_unrecognized_kwargs():
8383
table = [
8484
[control.dlqe, (sys, [[1]], [[1]]), {}],
8585
[control.dlqr, (sys, [[1, 0], [0, 1]], [[1]]), {}],
86+
[control.dlqe, (sys, [[1]], [[1]]), {}],
8687
[control.drss, (2, 1, 1), {}],
8788
[control.input_output_response, (sys, [0, 1, 2], [1, 1, 1]), {}],
8889
[control.lqe, (sys, [[1]], [[1]]), {}],
@@ -157,15 +158,15 @@ def test_matplotlib_kwargs():
157158
'bode_plot': test_matplotlib_kwargs,
158159
'describing_function_plot': test_matplotlib_kwargs,
159160
'dlqe': test_unrecognized_kwargs,
160-
'dlqr': statefbk_test.TestStatefbk.test_lqr_errors,
161+
'dlqr': test_unrecognized_kwargs,
161162
'drss': test_unrecognized_kwargs,
162163
'gangof4': test_matplotlib_kwargs,
163164
'gangof4_plot': test_matplotlib_kwargs,
164165
'input_output_response': test_unrecognized_kwargs,
165166
'interconnect': interconnect_test.test_interconnect_exceptions,
166167
'linearize': test_unrecognized_kwargs,
167168
'lqe': test_unrecognized_kwargs,
168-
'lqr': statefbk_test.TestStatefbk.test_lqr_errors,
169+
'lqr': test_unrecognized_kwargs,
169170
'nyquist': test_matplotlib_kwargs,
170171
'nyquist_plot': test_matplotlib_kwargs,
171172
'pzmap': test_matplotlib_kwargs,

0 commit comments

Comments
 (0)