Skip to content

Commit 3a441f4

Browse files
author
NewtonCrosby
committed
Fixed tests for odometry update calls to send Tuples
1 parent 95b54b9 commit 3a441f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_swervecontrollercommand.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def __init__(self, selector: int):
4141

4242
# The module positions and states start empty and will be populated below in the selector
4343
# self._modulePositions: Tuple[kinematics.SwerveModulePosition] = []
44-
self._modulePositions: List[kinematics.SwerveModulePosition] = []
45-
self._moduleStates: List[kinematics.SwerveModuleState] = []
44+
self._modulePositions: Tuple[kinematics.SwerveModulePosition] = []
45+
self._moduleStates: Tuple[kinematics.SwerveModuleState] = []
4646

4747
# Setup PID controllers, but if an error test case is requested, make sure it provides
4848
# data that should break the command instantiation

0 commit comments

Comments
 (0)