Skip to content

Commit

Permalink
Fix feedforward in unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotochleb committed Nov 26, 2024
1 parent 7df5be7 commit 6b7f4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_numpy_conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_check_numpy_constructors() -> None:
)
lfc_py_types.Control(
feedback_gain=np.ones((4, 4)),
feedforward=np.ones((4, 4)),
feedforward=np.ones(4),
initial_state=sensor,
)

Expand Down

0 comments on commit 6b7f4de

Please sign in to comment.